python新人新学求指导
不妨猜一下我喜欢那个数字:8
Traceback (most recent call last):
File "D:/360安全浏览器下载/pyonrn/wenjian/bodupyejy.py", line 5, in <module>
printf("你怎么知道的")
NameError: name 'printf' is not defined
程序:print('-----------------------我爱数字------------------')
temp = input("不妨猜一下我喜欢那个数字:")
guess = int(temp)
if guess == 8:
printf("你怎么知道的")
print("没,奖!")
else:
print(" no,我喜欢的是8!")
print("游戏结束")
为什么会是这样? printf 是 C 语言的函数,而不是 Python 的函数,当然会报错。正确代码:
print('-----------------------我爱数字------------------')
temp = input("不妨猜一下我喜欢那个数字:")
guess = int(temp)
if guess == 8:
print("你怎么知道的")
print("没,奖!")
else:
print(" no,我喜欢的是8!")
print("游戏结束") 为什么不是print("你这么知道的")
print(“没,奖!”)
print(“游戏结束”) tem 发表于 2019-8-5 12:24
为什么不是print("你这么知道的")
print(“没,奖!”)
print(“游 ...
这样就可以了:
print('-----------------------我爱数字------------------')
temp = input("不妨猜一下我喜欢那个数字:")
guess = int(temp)
if guess == 8:
print("你怎么知道的")
print("没,奖!")
else:
print(" no,我喜欢的是8!")
print("游戏结束") 你将print写成printf了 tem 发表于 2019-8-5 12:24
为什么不是print("你这么知道的")
print(“没,奖!”)
print(“游 ...
因为你的print("游戏结束")有缩进,属于else内的语句块
页:
[1]