Answer:
# recursive method to find if list is in ascending order
def is_sorted(list, low, high):
if low >= high: # if reached end of list
return True
if list[low] > list[low+1]: # if item at low is greater than low+1
return False # return false
return True and is_sorted(list, low+1, high) # or return True and recursion call to low+1
Step-by-step explanation: