lst = list(range(10))
for n in lst:
	lst.remove(n)

print(lst)