SyntaxError:标识符中的字符无效

时间:2017-07-23 08:50:32

标签: python

您好我刚刚开始使用python。当我尝试我的第一个程序时,我遇到了这个问题:

"You entered a java.util.Scanner[delimiters=\p{javaWhitespace}+][position=1][match valid=true][need input=false][source closed=false][skipped=false][group separator=\,][decimal separator=\.][positive prefix=][negative prefix=\Q-\E][positive suffix=][negative suffix=][NaN string=\Q?\E][infinity string=\Q8\E]"
  

错误:标识符中的字符无效

1 个答案:

答案 0 :(得分:3)

注意你在print函数中的引用不是常规的双引号,而是一个有角度的引用...当你的macOS的Settings设置为默认值以使用它们时你得到的类型。

你需要引号是常规的,所以......

print(“The word returned is: {}”.format(python_mission[25:34]))

应该......

print("The word returned is: {}".format(python_mission[25:34]))

此外,您可以取消选中“使用智能引号和破折号”以避免将来出现这种情况:
 enter image description here