Programming (11th Grade)
Data Structures
Which of the following statements will create a list in Python?
list = (1, 2, 3)
list = [1, 2, 3]
list = {1, 2, 3}
list = <1, 2, 3>