Answers for "python is in range (91,101):"

1

Write a Python function to check whether a number is in a given range.

def test_range(n):
    if n in range(3,9):
        print( " %s is in the range"%str(n))
    else :
        print("The number is outside the given range.")
test_range(5)
Posted by: Guest on April-09-2021
-1

find the range in python

def find_range(n):
    lowest = min(n)
    highest = max(n)
    # Find the range
    r = highest - lowest
    
    return lowest, highest, r
  
# src : Doing Math With Python
Posted by: Guest on December-29-2020

Code answers related to "python is in range (91,101):"

Python Answers by Framework

Browse Popular Code Answers by Language