Skip to content

Instantly share code, notes, and snippets.

@JessicaWachtel
Created February 29, 2024 22:31
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