c, b = a, c + 1でNameError例外が送出される理由は?
Problem 6: What will be the output of the following program.
a, b = 2, 3
c, b = a, c + 1
print a, b, c
こちらを実行しようとすると。。。
Traceback (most recent call last):
File "<console>", line 1, in <module>
NameError: name 'c' is not defined
と出てきます。
c = a
としているにもかかわらずなので、よく理解が出来ません。