You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting the proper output and the exercise is still failing. This is the code that I input: # Fix the program print("Are you ready?") number = int(input("Please type in a number: ")) while number > 0: print(number) number -= 1 print("Now!")
The validation engine tells me this:
"FAIL: PythonEditorTest: test_0
Make sure that execution of your program stops with the input 2"
The text was updated successfully, but these errors were encountered:
I am getting the proper output and the exercise is still failing. This is the code that I input:
# Fix the program print("Are you ready?") number = int(input("Please type in a number: ")) while number > 0: print(number) number -= 1 print("Now!")
The validation engine tells me this:
"FAIL: PythonEditorTest: test_0
Make sure that execution of your program stops with the input 2"
The text was updated successfully, but these errors were encountered: