python之猜数字
Posted chenrjfight
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python之猜数字相关的知识,希望对你有一定的参考价值。
使用python实现当猜数字,当数字大了,提示数字大,数字小了提示数字小,如果3次猜错,询问是否继续猜
使用while循环来实现代码如下
num=56
count=0
while count<=2:
guess=input(‘enter your guessing number:‘)
if guess.isdigit():
guess=int(guess)
if guess==num:
print(‘congratulations!‘)
break
elif guess>=num:
print(‘think smaller!‘)
else:
print(‘think bigger!‘)
else:
print(‘error!‘)
count+=1
if count==3:
answer=input(‘would your like to try again?(Y/N)‘)
if answer==‘Y‘:
count=0
else:
break
以上是关于python之猜数字的主要内容,如果未能解决你的问题,请参考以下文章