Post

@RealBenjizo Answer: a. tuple
Solution: In Python, a comma makes a tuple. The parentheses are actually the optional part.
So, what many people assume is "python magic" like
a, b = b, a
is actually just a tuple assignment.
The comma between the list [1, 2] and the tuple (1,2) makes a tuple
English

