使用 vim-syntastic 插件时出现逗号错误

Comma errors while using vim-syntastic plugin

保存 python 文件时,vim-syntactic 开始调试并引发语法错误(特别是逗号),无论是在列表、字典、元组等中。这是保存后的图像 python 文件.

问题出在你的代码上,那是无效的语法,我猜你对 python...

还很陌生

使用 {} 声明对象
这是一个对象的样子:

farm_animals = {"sheep":"big", "cow":"huge"}
print(farm_animals)

您可以在其他编辑器上在线试用:
http://py3.codeskulptor.org/#user301_UotVM3f1Pw_0.py

Vim - 当您不在逗号后添加 space 时,语法会引发语法错误。

√ animals = set(['cat', 'dog', 'mouse'])  # no errors
x animals = set(['cat','dog','mouse'])  # errors