6 Answers
New Answerhour = int(input()) day = int(input()) # your code goes here if (hour > 10 and hour < 21) and day < 6: print("Open") else: print("Close") If this is still wrong, please send the challenge details. If you need explanation feel free to ask. Thanks!
This my solution: hour = int(input()) day = int(input()) if (10 <= hour < 21) and (1 <= day <= 5): print(“Open”) else: print(“Closed”) Pls upvote and try this. Thanks!
hour = int(input()) day = int(input()) # your code goes here If (10 < hour < 21) and day < 6: Print("Open")
hour = int(input()) day = int(input()) if day < 6 and hour >=21 : print("Open") else : print("Closed") try this it works!
Sololearn Inc.
535 Mission Street, Suite 1591Send us a message