Learn to code with step-by-step lessons. A place for students to work through programming fundamentals and build skills.
One possible program:
for day in range(7):
celsius = float(input("Celsius for day " + str(day + 1) + ": "))
fahrenheit = celsius * 9 / 5 + 32
print("Day", day + 1, ":", celsius, "C =", round(fahrenheit, 1), "F")