Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def get_status(is_active = False):
- return ‘active’ if is_active is True else ‘not active’
- get_status(1)
- get_status(0)
- get_status(2)
- get_status()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement