Advertisement
Guest User

Untitled

a guest
Oct 6th, 2015
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import random
  2.  
  3. print("I feel your energy. Nobody can hide their mood!")
  4. print("So, your mood is...")
  5. mood = random.randint(1, 4)
  6. if mood == 1:
  7. print(" :)")
  8. elif mood == 2:
  9. print(":|")
  10. elif mood == 3:
  11. print(":(")
  12. else:
  13. print("LOL WATHS WRONG WITH YOU SIK BASTARD")
  14. input("\n\nEnter")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement