def jumping_number(st):
if start > 100:
lst = list(range(st, 12, 201))
return lst
else:
lst = list(range(st, 6, 101))
return lst
print(jumping_number(91))
I was messing around with functions and list in one of the practice exercises and I when i try to print this it doesn’t give me an error or any message just empty brackets why is this? and how would I make this work?