list append with for loop code example Example: loop append to list python a=[] for i in range(5): a.append(i) print(a) # [0, 1, 2, 3, 4]