扫描字符串文字时不理解此SyntaxError:EOL

时间:2018-06-26 22:46:27

标签: python

它一直在发生,我已经查看了其他答案,但它们仍然无法正常工作:

print(person, "got" ,PersonVotes, "votes)
print(person2, "got" ,Person2Votes, "votes")

1 个答案:

答案 0 :(得分:1)

您忘记了报价:

print(person, "got" ,PersonVotes, "votes)

应该是

print(person, "got" ,PersonVotes, "votes")