Python Fundamentals

16.Which of the following is a correct list?
  • A. {1,2,3}
  • B. (1,2,3)
  • C. [1,2,3]
  • D. list(1,2,3)

[1,2,3]

[1,2,3]