python小练习:带循环和条件判断的用户输入。使用raw_input()函数来提示用户输入一个1
python小练习:带循环和条件判断的用户输入。使用raw_input()函数来提示用户输入一个1和109之间的数,如果用户输入的数满足这个条件,显示成功并退出。否则显示...
python小练习:带循环和条件判断的用户输入。使用raw_input()函数来提示用户输入一个1和109之间的数,如果用户输入的数满足这个条件,显示成功并退出。否则显示一个错误信息然后再次提示用户输入数值,直到满足条件为止。 谢谢
展开
展开全部
Num_Random = random.randint(1, 109)
print('The randomly generated value is :', Num_Random)
num = int(input('please enter a number betmeen 1 and 109:'))
while 1 < num < 110:
if num == Num_Random:
print('Congratulations,you got it!')
break
else:
print('Answer is wrong,please re-enter the number between 1~109!')
num = int(input('please enter a number betmeen 1 and 109:'))
print('The randomly generated value is :', Num_Random)
num = int(input('please enter a number betmeen 1 and 109:'))
while 1 < num < 110:
if num == Num_Random:
print('Congratulations,you got it!')
break
else:
print('Answer is wrong,please re-enter the number between 1~109!')
num = int(input('please enter a number betmeen 1 and 109:'))
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询