I\'m supposed to create a function, which input is a list and two numbers, the function reverses the sublist which its place is indicated by the two numbers. for example this is
def reverse_sublist(lst,start,end): lst[start:end] = lst[start:end][::-1] return lst