Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. >>> def failure():
  2. ... """function for getting back on track after a failured situation or happening"""
  3. ... print("welcome for helping you getting back on track after your failure!")
  4. ... test = input("Enter a number from 0 to 2 -->here> ")
  5. ... if test == "0":
  6. ... print("shit happens head it and now get yourself together and start new!!!")
  7. ... elif test == "1":
  8. ... print("Ask yourself, ""What can I do to make myself more deserving of the next opportunity?""")
  9. ... elif test == "2":
  10. ... print("Don't waste time and energy being discouraged. Don't berate yourself. Plan to win next time.")
  11. ... else:
  12. ... print("completely off the grid man, put into the right number!!!")
  13. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement