Created
December 5, 2024 00:02
-
-
Save BluePyTheDeer251/09f75db8af14e72c3af437cacbb4fe44 to your computer and use it in GitHub Desktop.
Just programming in Python.
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
print("Welcome!") | |
myRandomInteger = input("Input a number between 1 and 1000: ") | |
if myRandomInteger >= 10: | |
print("Why?") | |
elif myRandomInteger >= 100: | |
print("Ok, a nice number.") | |
elif myRandomInteger >= 1000: | |
print("Not bad.") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment