Question: Given the following: m y list = [ 0 1 2 5 6 7 1 1 1 5 1 7 ] Which of the following

Given the following:
my list =[012567111517]
Which of the following statements prints the element 15?
print(my_list[2][1])
print(my list[1][2])
print(my_list(7))
print(my_list(2)(1))
None of the presented choices.
print(my_list[7])
print(my_list(1)(2))
Given the following: m y list = [ 0 1 2 5 6 7 1 1

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!