In Python, how do you create a list containing the numbers 1, 2, and 3?
a = {1, 2, 3}
a = [1, 2, 3]
a = (1, 2, 3)
a = 1, 2, 3

Technology Exercises are loading ...