Guest User

Untitled

a guest
Nov 20th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. import random
  2. smiles = ['XD',';)',':)',':()',':(']
  3. history = []
  4. reality = random.choice(smiles)
  5.  
  6. ('XD')= 5
  7. (':)') = 4
  8. (':|') = 3
  9. (':T') = 2
  10. (':(') = 1
  11.  
  12. def menu():
  13. print (smiles)
  14. int(input("Which emoticon do you relate to?"))
  15. if 1:
  16. print("You are Fealing like XD")
  17. print("but in reality you are feeling like", reality)
  18. etc
Add Comment
Please, Sign In to add comment