Question: Review the code below. What is the correct syntax for changing the price to 1.5?

  1. `fruit_info ['price'] = 1.5`
  2. `my_list [3.5] = 1.5`
  3. `1.5 = fruit_info ['price]`
  4. `my_list['price'] == 1.5`

Answer: The correct answer of the above question is Option A:`fruit_info ['price'] = 1.5`