Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- color = input()
- daytime = input()
- match color:
- case "red":
- print("Well, the sun is rising maybe...")
- case "white":
- print("Aren't you watching a lighting bulb?")
- case "blue" if daytime == "night":
- print("Are you kidding? Blue sky at night?")
- case "blue":
- print("That's what it should be!")
- case _:
- print("That's it, you are certainly not watching the sky!")
Add Comment
Please, Sign In to add comment