Advertisement
Gentoo7

pussy

Jul 21st, 2017
28,417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.40 KB | None | 0 0
  1. import random
  2. print 'Am I getting laid tonight?'
  3. Am_I_getting_laid = random.randrange(1, 10)
  4. guess = 0
  5. while guess != Am_I_getting_laid:
  6.     guess = (int)(input("Guess a number 1 to 10: "))
  7.     if guess < Am_I_getting_laid:
  8.         print("No pussy for you .")
  9.     elif guess > Am_I_getting_laid:
  10.         print("You're using your hand tonight")
  11.     else:
  12.         print("Yes,you are getting laid!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement