https://docs.python.org/3/tutorial/introduction.html

this isn't explained

print(a)
    a, b = b, a+b

why have a?
why have b = b ?
why aren't 3 values printed? 
why only a+b is printed?


don