Skip to content

Instantly share code, notes, and snippets.

@fatosmorina
Created November 14, 2021 11:35
Show Gist options
  • Save fatosmorina/e165a0ddeaa5acf95b322967b1715d02 to your computer and use it in GitHub Desktop.
Save fatosmorina/e165a0ddeaa5acf95b322967b1715d02 to your computer and use it in GitHub Desktop.
def compare_three_numbers(number, lower, upper):
return lower < number < upper
my_list = [3, 10, 19]
print(compare_three_numbers(*my_list)) # False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment