language: Python 3 (python-3.2.3)
date: 207 days 7 hours ago
link:
visibility: public
1
2
3
4
5
6
7
list = [1, 2, 3, 4]
 
for t in range(0, 10):
    for x in list:
        if x > 0:
            x -= 1
    print(list)