Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. def intro():
  2.     print("Let's do some coding!")
  3.     ready = input("Are you ready to go? ")
  4.     if ready == "yes" or ready == "YES" or ready == "Yes":
  5.         print("Ok great. Let's go!")
  6.     else:
  7.         print("Sorry to hear that.")
  8.    
  9. intro()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement