Test

Test


a = list(range(6))
while len(a) > 0:
a.remove(a[0])

print(a)

Report Page