list_1 = [ ] list_1.append ([(1, 2, 3), {1: (4, 5, 6, 7)}, [8, 9 ]] ) print(list_1 [0 ] [1] [1])
Answers
Answered by
6
Answer:
(4,5,6,7)
Explanation:
Answered by
0
Answer:
(4,5,6,7)
Explanation:
When you print the list then the index is 1 and the 1 index key value is (4,5,6,7)
Similar questions