lst = ['first', 'second']
for q,w in lst:
print(q)
print(w)
If I set my code like this, the result is an error. But if I do this way:
lst = [['first', 'second']]
for q,w in lst:
print(q)
print(w)
The output is #first #second .
I don't understand the mechanism for this.. can somebody help me?