标签: 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。