Advertisement
pavelredwood

exer

Feb 2nd, 2022
1,546
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.54 KB | None | 0 0
  1. # NO TOUCHING ======================================
  2.  
  3. from random import choice, randint
  4.  
  5. # randomly assigns values to these four variables
  6. actually_sick = choice([True, False])
  7. kinda_sick = choice([True, False])
  8. hate_your_job = choice([True, False])
  9. sick_days = randint(0, 10)
  10.  
  11. # NO TOUCHING ======================================
  12.  
  13.  
  14. calling_in_sick = None  # set this to True or False with Boolean Logic and Conditionals!
  15.  
  16. # YOUR CODE GOES HERE vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
  17.  
  18.  
  19. # YOUR CODE GOES HERE ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement