Guest User

Untitled

a guest
Oct 22nd, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.40 KB | None | 0 0
  1. >>> while True:
  2.     s = input("Enter yout idea : ")
  3.     if s == "Why?":
  4.         print("We need it to book")
  5.     s = input
  6.     if s == "What book?":
  7.          print("RedBook from Rubia")
  8.     s = input
  9.     if s == "Ok":
  10.          break
  11.     elif s == "No":
  12.         print("Good bye, bitch")
  13.         break
  14.  
  15. Enter yout idea : Why?
  16. We need it to book
  17. Enter yout idea : What book?
  18. Enter yout idea :
Advertisement
Add Comment
Please, Sign In to add comment