x = [1,2,3,4] print(x) for k in x: #print(k) k = 0 # k is an iterator. It visits items but does not change them print(x) for k in range(len(x)): x[k] = 0 # the subscript gets at the actual entries on the list. print(x)