This is my first question and I started to learn Python. Is there a difference between:
a, b = b, a + b
and
a = b b = a +
a, b = b, a + b is similar to a, b = 0, 1 assigning values to both variables a, b at same time. First assign a = b and then b = a + b.
a, b = 0, 1
a, b
a = b
b = a + b