Advertisement
Guest User

Untitled

a guest
Mar 13th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. myName = input ("What is your name")
  2. print("Hello " + (myName))
  3. if(myName == "James"):
  4.     print("James is cool!")
  5. elif(myName == "Isham"):
  6.     print ("Isham is Amazing!")
  7. else:
  8.     print("Hello " + (myName))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement