Skip to content

Instantly share code, notes, and snippets.

@Shalabyelectronics
Created October 29, 2022 22:44
Show Gist options
  • Save Shalabyelectronics/135684c1f7a08a87190152fc2ae84341 to your computer and use it in GitHub Desktop.
Save Shalabyelectronics/135684c1f7a08a87190152fc2ae84341 to your computer and use it in GitHub Desktop.
def in_range(number:int, range_from:int, range_to:int) -> bool:
return number in list(range(range_from,range_to+1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment