I know the canonical way to unpack a tuple is like this
a, b, c = (1, 2, 3) # or (a,b,c) = (1, 2, 3)
b