Advertisement
Rockyhlwong

Untitled

Dec 12th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. phrase = input("Talk to me >")
  2. if phrase == "hi":
  3.   print("Hello")
  4. elif phrase == "whats your name":
  5.   print("Marvin")
  6. else:
  7.   print("Sorry I don't understand this " + "'" + phrase + "'")
  8. print("Bye")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement