Guest User

Untitled

a guest
Jan 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. import random
  2.  
  3. x = 'Justin Sucks'
  4. y = 'Justin Doesn\'t Suck'
  5.  
  6. z = int(random.random() * 100)
  7.  
  8. if z > 50:
  9.     print x
  10. else:
  11.     print y
Add Comment
Please, Sign In to add comment