list = [1, 2, 3, 4]

for t in range(0, 10):
    for x in list:
        if x > 0:
            x -= 1
    print(list)