RecursionRangewithlist.py
def addinglist(n): if n == 7: return [n] return [n] + addinglist(n+1) """method of using recursion to construct a range list"""