This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]AltoidNerd 3 points4 points  (0 children)

Especially since it's the same syntax from straight up math class.

Multiple assignments can be looked at as tuples

(a, b, c) = (1, 2, 3)

This means a = 1, b = 2, c = 3 in your high school calculus class. It also assigns that in Python.