带尾随逗号的Python表达式:语法错误或元组?

时间:2017-10-26 06:55:39

标签: python syntax tuples

带有额外逗号的Python赋值语句创建一个元组(不是语法错误):

>>> tuple_int = 3 ,
>>> tuple_int
(3,)
>>> another_one = 4,
>>> another_one
(4,)
>>>

为什么?

给我造成了一个难以找到的错误。

python语法似乎不允许这样:https://docs.python.org/3/reference/simple_stmts.html

我在Windows上使用python 3.4.1。

0 个答案:

没有答案