4.3 code practice answers to the practice code
Answers
Answered by
1
Question -
4.3 Code Practice: Question 1
Answer -
age = input("How old are you? STOP to end: ")
while (age != "STOP"):
print("**HUG**")
age = input("How old are you?, STOP to end: ")
print("Done.")
Similar questions