【求助】丧尽天良,WHILE下面的条件判断成功后竟无法运行他的PRINT!
多的不说,看下面的代码,我直接猜6我的小游戏居然不夸我就直接GAME OVER,简直没大没小。temp = input("请输入1到100之间的数字")
guess = int(temp)
while guess != 6:
if guess == 6:
print("smart boy, ~~~")
else:
print("you bad bad!")
print("GAME OVER")
只有输入值不等于6才能进入while循环体
所以你输入6,不能进入while循环,就直接打印GAME OVER了
丧尽天良!你都没有进入while循环,居然还想得到while的夸奖!temp = input("请输入1到100之间的数字")
guess = int(temp)
while guess != 6: #直接输入6时,不执行while中的ifelse,而是直接打印game over
if guess == 6:
print("smart boy, ~~~")
else:
print("you bad bad!")
print("GAME OVER") 如果你想得到夸赞,可以这么修改:
temp = input("请输入1到100之间的数字")
guess = int(temp)
while True: #直接输入6时,不执行while中的ifelse,而是直接打印game over
if guess == 6:
print("smart boy, ~~~")
else:
print("you bad bad!")
print("GAME OVER") {:5_103:} 可以换种思路,只有猜错我们才需要进入循环,猜对的话就不进入循环或者循环结束了,那么这样编写出来的代码可以参考一下我的:
temp = input("猜一个数字:")
guess = int(temp)
while guess != answer:
if guess > answer:
print('大了')
else:
print('小了')
temp = input("猜错了,再试试?:")
guess = int(temp)
print('猜对了')
print("游戏结束")
页:
[1]