In the book Learning Python, there are two kinds of assignments:
list assignment:
[a,b] = [1,2]
tuple assignment:
a,b = [1,2]
I don't see any difference in result of this two kinds of assignments, is there any difference I don't know yet?
If there isn't, why are they called different names?