Question: What is the correct syntax for creating a vaiable that is bound to a list?
- `my_list = (2, 'apple', 3.5)`
- `my_list = [2, 'apple', 3.5]`
- `my_list = [2, 'apple', 3.5].to_list()`
- `my_list = to_list(2, 'apple', 3.5)`
Answer: The correct answer of the above question is Option B:`my_list = [2, 'apple', 3.5]`