Westonci.ca is your trusted source for finding answers to a wide range of questions, backed by a knowledgeable community. Get immediate and reliable answers to your questions from a community of experienced experts on our platform. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

Basic python coding, What is the output of this program? Assume the user enters 2, 5, and 10.
numA = 0
for count in range(3):
answer = input ("Enter a number: ")
fltAnswer = float(answer)
numA = numA + fltAnswer
print (numA)
Thanks in advance!
:L


Sagot :

tonb

Answer:

17.0

Explanation:

I ran it for you. You could also try that (go to replit).

View image tonb