Q:

Write a Python program to find the maximum and minimum values in a given list within specified index range

0

Write a Python program to find the maximum and minimum values in a given list within specified index range

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

def reverse_list_of_lists(nums,lr,hr):
    temp = []
    for idx, el in enumerate(nums):
        if idx >= lr and idx < hr:
            temp.append(el)
    result_max = max(temp) 
    result_min = min(temp) 
    return result_max, result_min
nums = [4,3,0,5,3,0,2,3,4,2,4,3,5]
print("Original list:")
print(nums)
print("\nIndex range:")
lr = 3
hr = 8
print(lr,"to",hr)
print("\nMaximum and minimum values of the said given list within index range:")
print(reverse_list_of_lists(nums,lr,hr))

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now