QuestionQ38
Python/PyEZYou want to create a Python list to hold data.
Which statement correctly accomplishes this task?
- A L = "0, 1, 2, 3, 4, 5"
- B L = {0, 1, 2, 3, 4, 5}
- C L = [0, 1, 2, 3, 4, 5]
- D L = (0, 1, 2, 3, 4, 5)
You want to create a Python list to hold data.
Which statement correctly accomplishes this task?
Community Discussion