Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # NO TOUCHING ======================================
- from random import choice, randint
- # randomly assigns values to these four variables
- actually_sick = choice([True, False])
- kinda_sick = choice([True, False])
- hate_your_job = choice([True, False])
- sick_days = randint(0, 10)
- # NO TOUCHING ======================================
- calling_in_sick = None # set this to True or False with Boolean Logic and Conditionals!
- # YOUR CODE GOES HERE vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
- # YOUR CODE GOES HERE ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement