Skip to content

Instantly share code, notes, and snippets.

@shamikalashawn
Created February 6, 2017 23:35
Show Gist options
  • Save shamikalashawn/ecef375f53203fe41b24f2d7fdd58885 to your computer and use it in GitHub Desktop.
Save shamikalashawn/ecef375f53203fe41b24f2d7fdd58885 to your computer and use it in GitHub Desktop.
Got something to say? Say away! This function takes user input until you type "exit".
def user_input_until_exit():
user_input = input()
while user_input != 'exit':
user_input
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment