I need to define a function called rec_range(n) which takes a natural number and returns a TUPLE of numbers up to the number n.
i.e. rec_range(5) returns (0,1,2,3,4)
this is simple one:
def getrange(a,b,c=1): if a < b: print(a) a+=c getrange(a,b,c) else: return getrange(0,30,2)