write a program in python in which the computer will ask the user to input the values until the user enters zero
Answers
Answered by
5
Value = Input("Enter a number")
while( Value != "0"):
Value = Input("Enter a number")
Similar questions