type(3,) returns the int type, while
t = 3,
type(t)
returns the tuple type. Why?
|
|
|
Inside the parentheses that form the function call operator, the comma is not for building tuples, but for separating arguments. Thus,
|
|||
|
|
|
The builtin
|
|||||||
|
|
I suspect Python ignores a trailing comma in function arguments:
Using comma-separated values without parentheses to create a tuple is a trick that doesn't work everywhere. List comprehensions is a good example:
You have to do this:
List unpacking works fine, though, so it's a bit variable where unbounded, comma-separated values are allowed:
|
|||
|
|
|
In
|
|||
|
|