Write a program that asks the user to enter ten temperatures and then finds the sum. The input temperatures should allow for decimal values.
1
Expert's answer
2020-01-29T05:19:36-0500
print('Enter ten temperatures please')
sum = 0#initialize variable for sumfor i inrange(10):
T = float(input()) #read user inputsum = sum + T #add current temperature value to sumprint('Sum is: ',sum) #print result
Finding a professional expert in "partial differential equations" in the advanced level is difficult.
You can find this expert in "Assignmentexpert.com" with confidence.
Exceptional experts! I appreciate your help. God bless you!
Comments