Created
February 29, 2024 22:31
-
-
Save JessicaWachtel/b4f03bd140bcff39a2caa45104ec0f22 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
def distance_checker(miles): | |
if 0 < miles <10: | |
print("in range") | |
else: | |
print("out of range") | |
distance_checker(13) | |
# out of range |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment