Question: use python program A Python list can be thought of as representing a 1-D table of values. A 2-D table of values can be represented
A Python list can be thought of as representing a 1-D table of values. A 2-D table of values can be represented as a list of lists. For example, the following code list1 = [1, 2, 3] list2 = [4, 5, 6] list3 = [7, 8, 9] myList-listl, list2, list3] 1 2 3 creates a representation of a 3 3 table 4 5 6 789 Given this code, what would be printed by the following statement? print (myList[2] [0])
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
