|
|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
print("you are asshole")
temp = input("give me a number, your son of bitch:")
guess = int(temp)
if guess == 1:
print("I'm your big father")
else:
print("holy shit")
print("game over")
一运行就报错,这个哪里错了?该怎么改呢?
hi 问题出在缩减 - print("you are asshole")
- temp = input("give me a number, your son of bitch:")
- guess = int(temp)
- if guess == 1:
-
- #print("I'm your big father") #这里的缩减存在问题
- print("I'm your big father") #缩减调整后,调试通过
- else:
- print("holy shit")
- print("game over")
复制代码
|
|