I need to make some lists with the contents of a list. Like a:
list=["One", "Two", " Three "]
for x in list:
x = []
But it doesn't works because if I do:
list(One)
It didn't show the content of One, because One is not defined.
So, is it possible to create lists with content of other list?