Put the following temperatures into a single list: 72 78 82 71 65 85 77 Next, print the entire list. Then update the temperature 82 to be 84 and the temperature 65 to be 89. Print the updated list. Code Output sample: [72,78,82,71,65,85,77] [72,78,84,71,89,85,77]