This chapter introduces lists, a fundamental data type in Python that can hold multiple items of varying types, allowing for efficient organization of data.
How is the first element of a list accessed in Python?
Which of these operations can be performed on a list?
What does the statement 'list2 = list1' do in Python?
What does the extend() method do in regard to lists?
If you execute myList.clear(), what will myList become?
Which method can be used to access each item in a list?
If `list1 = [1, 2, 3]`, what will `list1.pop(1)` return?
What does `list1.pop()` do if `list1 = [10, 20, 30]`?
If `list2 = list1.copy()`, what does `list2` contain?
What does myList.pop(0) do when myList = [1, 2, 3]?