Q:

Assume the output values : [[3, 4, 5, 1], [33, 6, 1, 2]] v = values[0][0] for lst in values: for element in lst: if v > element: v = element print(v)

3

Assume the output values

values = [[3, 4, 5, 1], [33, 6, 1, 2]] v = values[0][0] for lst in values: for element in lst: if v > element: v = element print(v)

  1. 3
  2. 1
  3. 2
  4. 33

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Correct Answer:

1

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Python Multiple Choice Questions And Answers

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Output is: l = [1,2,6,5,7,8] l.insert(9)... >>
<< Which of the following statement is correct...