Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
愚蠢的语法错误!
我不太清楚这点代码有什么问题。如果我让它打印“x 是最高奇数”,它工作正常,但是每当我尝试让它打印“x”的实际值时,我都会收到语法错误。我错过了什么小而简单的步骤?
谢谢!
尝试这个:
print x, 'is the highest odd number'
或者,如果您使用的是 Python 3:
print(x, 'is the highest odd number')
print(x, "is the highest odd number")
是print 的 python3 语法。
没有逗号:
x "is the highest odd number"
是没有运算符的数字和字符串,因此出现语法错误。
同样,评估2"a"会给你一个语法错误。
2"a"