Question: STARTER CODE degrees_C = [ 0,50,100 ] for TC in degrees_C: print( ( 9/5 ) * TC + 32 ) Modify this program so that
STARTER CODE degrees_C = [ 0,50,100 ] for TC in degrees_C: print( ( 9/5 ) * TC + 32 )
![STARTER CODE degrees_C = [ 0,50,100 ] for TC in degrees_C: print(](https://dsd5zvtm8ll6.cloudfront.net/si.experts.images/questions/2024/09/66f3ab9c8b82e_21266f3ab9c20174.jpg)
Modify this program so that it creates a list degrees_F which contains the corresponding values in degrees Fahrenheit. You will need to set up an empty list named degrees_F before the for loop, and modify it by appending inside the for loop body. 180 TFTC 32 100
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
