$$ \newcommand{\floor}[1]{\left\lfloor{#1}\right\rfloor} \newcommand{\ceil}[1]{\left\lceil{#1}\right\rceil} \renewcommand{\mod}{\,\mathrm{mod}\,} \renewcommand{\div}{\,\mathrm{div}\,} \newcommand{\metar}{\,\mathrm{m}} \newcommand{\cm}{\,\mathrm{cm}} \newcommand{\dm}{\,\mathrm{dm}} \newcommand{\litar}{\,\mathrm{l}} \newcommand{\km}{\,\mathrm{km}} \newcommand{\s}{\,\mathrm{s}} \newcommand{\h}{\,\mathrm{h}} \newcommand{\minut}{\,\mathrm{min}} \newcommand{\kmh}{\,\mathrm{\frac{km}{h}}} \newcommand{\ms}{\,\mathrm{\frac{m}{s}}} \newcommand{\mss}{\,\mathrm{\frac{m}{s^2}}} \newcommand{\mmin}{\,\mathrm{\frac{m}{min}}} \newcommand{\smin}{\,\mathrm{\frac{s}{min}}} $$

Prijavi problem


Obeleži sve kategorije koje odgovaraju problemu

Još detalja - opišite nam problem


Uspešno ste prijavili problem!
Status problema i sve dodatne informacije možete pratiti klikom na link.
Nažalost nismo trenutno u mogućnosti da obradimo vaš zahtev.
Molimo vas da pokušate kasnije.

Computing with lists

Here we will practice using of lists and combining the techniques we have learned so far.

Example - the smallest positive number

A tuple of numbers is given. Print the smallest positive number from that tuple.

This task is a combination of the tasks we have done so far. In the first part of the assignment we copy the positive numbers from the tuple into the list, and in the second part we apply the function min to the list of positive numbers.

We mentioned that the functions min, max, sum, len can be applied to different collections, and we have shown this with examples of tuple, range and string (except the sum of the elements of a string). We now see that the min function also accepts a list as its argument. The same holds for the functions max, sum, len.

Example - failures

There are 10 machines in one factory and they are represented by numbers from 0 to 9. For each malfunction that occurred, the number of the malfunctioning machine was recorded. A tuple is given with these numbers describing failures.

Write a program that lists how many times each of the machines malfunctioned, followed by the numbers of the machines that had never failed.

The first part of the assignment requires that we count the number of times each number appears in the input data. To solve this part of the task, we create the list num_failures of 10 elements (that are initially zero), in which each element corresponds to one machine and counts its failures.

num_failures = [0] * 10
for machine in failures:
    num_failures[machine] += 1

After that, we print out for each machine how many failures it had. We use the range here because we want to print machine sequence number and number of failures for each machine:

for i in range(10):
    print('Machine', i, 'failed', num_failures[i], 'times.')

The second part of the assignment asks us to print the machine numbers that had never failed. These are machines whose number of failures is zero. We go through the list num_failures again and insert indices of elements equal to zero in the new list, named not_failed:

not_failed = []
for i in range(10):
    if num_failures[i] == 0:
        not_failed.append(i)

Finally, we print the items of the list not_failed.

print('Machines that did not break down:')
for machine in not_failed:
    print(machine)

Here’s what the whole program looks like:

Task - football fans

Football fans from 8 countries are coming to the tournament in the city X. Tournament organizers want to know how many fans come from each country.

Each country is represented by a number from 0 to 7. The given numbers for each fan tell what country he or she comes from. Complete the program below that lists for each country how many fans come from it.

The assignment asks for each number 0 to 7 to count how many times that number appears among the given numbers. The missing part in the script is very similar to counting the failures in the given example.

Task - most fans

This is the continuation of the previous task. Organizers now additionally want to know from which country most fans come.

Copy the previous program and append it so that it eventually prints out the number of the country from which most fans come.

If you complete the task correctly, the program should print number 3, because that number appears most often in the data.

Task - The biggest negative number

A tuple of numbers is given. Print the largest negative number from that tuple.

Task - small sales

The tuple is given that contains the amounts of customer accounts in one sales network. All sales of less than 500 are considered small sales. Write a program that calculates the total revenue from all small sales.

There are two ways to solve this task. One is to extract small amounts to a separate list and apply the sum function to that list. Another way is to gradually build up the sum, as we did in the lesson on counting and summing.