-
my_set = {0, 'apple', 3.5} -
my_set = to_set(0, 'apple', 3.5) -
my_set = (0, 'apple', 3.5).to_set() -
my_set = (0, 'apple', 3.5).set()
Correct Answer:
-
my_set = {0, 'apple', 3.5}
What is the correct syntax for creating a variable that is bound to a set?
my_set = {0, 'apple', 3.5}my_set = to_set(0, 'apple', 3.5)my_set = (0, 'apple', 3.5).to_set()my_set = (0, 'apple', 3.5).set()Correct Answer:
my_set = {0, 'apple', 3.5}Latest Updates
No posts found in this category.