Question: 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()`
Answer: The correct answer of the above question is Option A:`my_set = {0, 'apple', 3.5}`