Programming (12th Grade)
Sets
What is the correct way to create a set in Python?
set = {1, 2, 3}
set = [1, 2, 3]
set = (1, 2, 3)
set = <1, 2, 3>