What does the following code segment do? x = 0for i in range…
What does the following code segment do? x = 0for i in range(1, len(values)) : if values > values : x = i It finds the largest item in values and stores it in x *b. It finds the position of the largest item in values and stores the position in x It finds the smallest item in values and stores it in x It finds the position of the smallest item in values and stores it in x