SnitchingAuggie

494
reputation
3
14

Learning how to program python like a pro. So far I've found out how to make lists automatically :)

while len(a) < 201:
if a[0] < 100:
    a.insert(0, a[0] + 1)
else: 
    a.insert(len(a), a[len(a) - 1] - 1)

print(a)