Task 2 Lowest number in a list
In this task you are going to analyse a piece of code to check
whether it is working correctly. The program is meant to find
the lowest number from a list of integers called items and
store the lowest value from this list in the variable lowest.
lowest-items[0]
for current in range(1, len(items));
if lowest lowest-items[current]
Figure 2
Complete the trace table below using the algorithm in Figure
2. The list of items and the first two lines of code have been
filled in for you.
items
Please tell me the answer