In the case of a single element tuple, the trailing comma is required.
a = (\'foo\',)
What about a tuple with multiple elements? It seems t
Coding style is your taste, If you think coding standard matters there is a PEP-8 That can guide you.
What do you think of the result of following expression?
x = (3) x = (3+2) x = 2*(3+2)
Yep, x is just an number.