Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. import time
  2. import random
  3.  
  4. def print_x():
  5. print('sentence')
  6.  
  7. def print_x2():
  8. print('sentence tretre')
  9.  
  10.  
  11. randomMethod = random.choice([print_x, print_x2])
  12. randomMethod()
  13.  
  14.  
  15. if random.randint(1, 100) >= 50:
  16. print_x()
  17. else:
  18. print_x2()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement