我的代码是:
if any(s in attrs["show"] for s in ("Apple Mac OS","Intel Mac OS")):
错误是:
if any(s in attrs["show"] for s in ("Apple Mac OS","Intel Mac OS")):
^
SyntaxError: invalid syntax
我可以在一台机器上成功运行相同的脚本,然后我只是将它复制到另一台机器上,它返回此错误,真的不知道为什么
答案 0 :(得分:5)
您的计算机上有旧版本的Python,无法运行它。就像,一个非常古老的版本;我相信这个功能是在Python 2.4中添加的。