Answers for "get range of value from array in python"

4

get range of items of python list

names = ['Alice', 'Bob', 'Tom', 'Grace']

names[1:3]
# Output:
# ['Bob', 'Tom']
Posted by: Guest on April-08-2020
-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 "get range of value from array in python"

Python Answers by Framework

Browse Popular Code Answers by Language