Source Code:
(back to article)
my_tuple = (1, 2, 3) a, b, c = my_tuple print(a) # Output 1 print(b) # Output 2 print(c) # Output 3
Result:
Report an issue