98,908 views
33 votes
33 votes
What is the output of this program? Assume the user enters 3, 6, and 11.

numA = 0
for count in range(3):
answer = input ("Enter a number: ")
fitAnswer = float(answer)
numA = numA + fltAnswer
print (numA)
Output:

User Benderto
by
2.9k points

1 Answer

20 votes
20 votes

Answer:

14.0

Step-by-step explanation:

User Sarang Shinde
by
3.0k points