Premium Only Content

For Loop with Multiple Lists |Section 4|Celestial Warrior
In one of the previous exercises we created the following function that gets Celsius degrees as input and returns Fahrenheit, or a message if the Celsius inputvalue is less than -273.15.
def c_to_f(c):
if c< -273.15:
return "That temperature doesn't make sense!"
else:
f=c*9/5+32
return f
Please implement a for loop that iterates through the following temperatures list temperatures=[10,-20,-289,100]and calls the above c_to_f function in each iteration. In other words, this timeyou are using the function to calculatea series of values instead of just one value.
The expected output:
50.0
-4.0
That temperature doesn't make sense!
212.0
temperatures=[10,-20,-289,100]
def c_to_f(c):
if c< -273.15:
return "That temperature doesn't make sense!"
else:
f=c*9/5+32
return f
for t in temperatures:
print(c_to_f(t))
-
LIVE
Flyover Conservatives
20 hours agoThe SEAL-Turned-CEO Paying Off Millions in Veteran Medical Debt: JOIN THE MISSION! - Bear Handlon, Born Primitive | FOC Show
563 watching -
LIVE
Drew Hernandez
6 hours agoTRUMP'S GAZA PEACE PLAN PHASE 1 & TRUMP THREATENS PUTIN WITH TOMAHAWKS
594 watching -
1:18:38
Glenn Greenwald
5 hours agoProf. John Mearsheimer on Trump's Knesset Speech, the Israel/Hamas Ceasefire, Russia and Ukraine, and More | SYSTEM UPDATE #530
76.2K38 -
2:21:37
Tucker Carlson
3 hours agoAlex Jones Warns of the Globalist Death Cult Fueling the Next Civil War and Rise of the Antichrist
37.5K249 -
12:35
Clownfish TV
11 hours agoJimmy Kimmel Return NOT Helping Disney AT ALL! DIS Stock Keeps Falling! | Clownfish TV
7515 -
LIVE
Eternal_Spartan
5 hours ago🟢 Eternal Spartan Plays Final Fantasy 7 Rebirth Ep. 10 | USMC Vet
92 watching -
2:10:42
RiftTV
5 hours agoTrump SECURES Hostages, ACCIDENTALLY Admits Foreign Gov CONTROLS Him? | The Rift | Gerald Morgan Jr.
29.6K19 -
LIVE
Phyxicx
2 hours agoStarting Dead Space 2 - 10/13/2025
102 watching -
9:29:38
Dr Disrespect
11 hours ago🔴LIVE - DR DISRESPECT - BATTLEFIELD 6 - JET CRASHES, EXPLOSIONS, 360 NO-SCOPES
142K7 -
LIVE
megimu32
2 hours agoOTS: Wait... They Were in THAT?! Famous Actors’ Forgotten Roles!
107 watching