fork download
  1. def sleep_in(weekday, vacation):
  2. if not weekday or vacation:
  3. return True
  4. else:
  5. return False
  6.  
  7.  
  8. sleep_in(True, True)
Success #stdin #stdout 0.02s 9936KB
stdin
Standard input is empty
stdout
Standard output is empty