📜  pyflakes 无效语法 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:11.735000             🧑  作者: Mango

代码示例1
if variable > 10
  print(variable + str(" > 10"))
# there is no ":" next to the 10 in the 1st line, that will activate an error which is "SyntaxError : invalid syntax"
# [pyflakes] significate something is missing in your code