I have to make a function that takes an empty list as first argument and n as secound argument, so that:
L=[] function(L,5) print L returns: [1,2,3,4,5]
And a bit shorter example of what you want to do:
l = [] l.extend(range(1, 5)) l.extend([0]*3) print(l)