Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The following loop should keep prompting the user to enter a number or hit enter to quit. Write the condition for the while loop in
The following loop should keep prompting the user to enter a number or hit enter to quit. Write the condition for the while loop in the following code. Paste completed code in the space below. sum=0.0; data=input("Enter a number of just enter to quit:") while __________________: number=float(data) sum += number data=input("Enter a number or just enter to quit:") print("The sum is:", sum)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started