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."
此方法为您提供了一个简单的机会来打印消息,告诉用户程序期望的内容.
总结以上是内存溢出为你收集整理的python – 强制raw_input全部内容,希望文章能够帮你解决python – 强制raw_input所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)