想实现的结果:
COM:猜猜我现在想的数字是什么?嗯,你想的数字是:3
COM:Your answer is too small.
嗯,你想的数字是:8
COM:Your answer is too small.
嗯,你想的数字是:11
COM:Your answer is too large.
嗯,你想的数字是:10
COM:BINGO!!!
Process finished with exit code 0
代码: #!/usr/bin/python # -*- coding=utf-8 -*- #author:我是一个小菜鸟 word="COM:猜猜我现在想的数字是什么?" print(word) #用的版本是python3.5.0 #digit=int(input("please input:")) while 1: #while循环语句
digit=int(input("嗯,你想的数字是:")) #输入一个数字 if digit<10:
print("COM:Your answer is too small.") continue #跳过这个条件 elif digit>10:
print("COM:Your answer is too large.") continue else:
print("COM:BINGO!!!") break #结束while循环