Skip to content

Instantly share code, notes, and snippets.

@Cr4shOv3rrid3
Created August 11, 2019 20:32
Show Gist options
  • Save Cr4shOv3rrid3/254b3e57220429482c4aebd0b09518ee to your computer and use it in GitHub Desktop.
Save Cr4shOv3rrid3/254b3e57220429482c4aebd0b09518ee to your computer and use it in GitHub Desktop.
how to deal with failure!
>>> def failure():
... """function for getting back on track after a failured situation or happening"""
... print("welcome for helping you getting back on track after your failure!")
... test = input("Enter a number from 0 to 2 -->here> ")
... if test == "0":
... print("shit happens head it and now get yourself together and start new!!!")
... elif test == "1":
... print("Ask yourself, ""What can I do to make myself more deserving of the next opportunity?""")
... elif test == "2":
... print("Don't waste time and energy being discouraged. Don't berate yourself. Plan to win next time.")
... else:
... print("completely off the grid man, put into the right number!!!")
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment