python – 强制raw_input
发布时间:2020-12-20 13:03:10 所属栏目:Python 来源:网络整理
导读:我将如何实现以下内容: title_selection = raw_input("Please type in the number of your title and press Enter.n%s" % (raw_input_string))if not title: # repeat raw_input 解决方法 这通常是通过“循环半”构造完成的,中间有一个中断: while True:
我将如何实现以下内容:
title_selection = raw_input("Please type in the number of your title and press Enter.n%s" % (raw_input_string)) if not title: # repeat raw_input 解决方法
这通常是通过“循环半”构造完成的,中间有一个中断:
while True: title_selection = raw_input("Please type in the number of your title and press Enter.n%s" % (raw_input_string)) if title_selection: break print "Sorry,you have to enter something." 此方法为您提供了一个简单的机会来打印消息,告诉用户程序期望的内容. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |