标签: python python-2.7
请帮助我,我无法找到为什么我的python代码显示错误
if (temp == "")
错误是:
if (temp == "") ^ SyntaxError: invalid syntax
答案 0 :(得分:1)
您错过了:。将其更改为if temp == "":
:
if temp == "":