Comment dupliquer une liste dans Python
example = [1,2,3,4,5,6,7,8] #this is the list
for i in example:
example.append(example[i])
Gorgeous Gentoo
example = [1,2,3,4,5,6,7,8] #this is the list
for i in example:
example.append(example[i])