-7

愚蠢的语法错误!

我不太清楚这点代码有什么问题。如果我让它打印“x 是最高奇数”,它工作正常,但是每当我尝试让它打印“x”的实际值时,我都会收到语法错误。我错过了什么小而简单的步骤?

谢谢!

4

2 回答 2

2

尝试这个:

print x, 'is the highest odd number'

或者,如果您使用的是 Python 3:

print(x, 'is the highest odd number')
于 2012-10-09T23:28:21.593 回答
1
 print(x, "is the highest odd number")

print 的 python3 语法

没有逗号:

x "is the highest odd number"

是没有运算符的数字和字符串,因此出现语法错误。

同样,评估2"a"会给你一个语法错误。

于 2012-10-09T23:32:39.523 回答