Browse
My Learning
Library
Exams
Sign In
Get Started
Python Programming Fundamentals
Question 1 of 5
30:00
0/5 Answered
What is the correct way to create a list in Python?
list = (1, 2, 3)
list = [1, 2, 3]
list = {1, 2, 3}
list = <1, 2, 3>
Previous
Next Question
Questions
1
2
3
4
5