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