Question: Review the code below. What is the correct syntax for changing the price to 1.5?
- `fruit_info ['price'] = 1.5`
- `my_list [3.5] = 1.5`
- `1.5 = fruit_info ['price]`
- `my_list['price'] == 1.5`
Answer: The correct answer of the above question is Option A:`fruit_info ['price'] = 1.5`