News

Summary: You'll use a WHILE loop to keep prompting the user to enter a temperature in degrees Fahrenheit until the user enters a temperature of -9999. Entering a temperature of -9999 tells Python the ...
When you want to create a loop in Python, you generally have two choices: the while loop and the for loop. while is simple: it just repeats until a given condition is no longer true.