-
-
Save oohmeknees/402f654b610706afb86d6eca1939531d to your computer and use it in GitHub Desktop.
indentation example created by jsh - https://repl.it/GLye/0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def continueFunction(): | |
| response = 'n' | |
| while not(response == 'Y'): | |
| response = input('Enter Y to continue: ') | |
| return response | |
| answer = continueFunction() | |
| print('The user typed: ' + answer) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment