Created
April 5, 2017 22:24
-
-
Save Mdslino/36a0be02cd409b1de9b1697e74f2ad5e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hora = int(input("Informe a hora com dois digitos")) | |
if hora >=0 and <=11: | |
print("Bom dia") | |
elif hora >=12 and <=17: | |
print("Boa Tarde") | |
else: | |
print("Boa Noite") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment