Skip to content

Instantly share code, notes, and snippets.

@JessicaWachtel
Created February 29, 2024 22:31
Show Gist options
  • Save JessicaWachtel/b4f03bd140bcff39a2caa45104ec0f22 to your computer and use it in GitHub Desktop.
Save JessicaWachtel/b4f03bd140bcff39a2caa45104ec0f22 to your computer and use it in GitHub Desktop.
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