python – 强制raw_input

python – 强制raw_input,第1张

概述我将如何实现以下内容: 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."

此方法为您提供了一个简单的机会来打印消息,告诉用户程序期望的内容.

总结

以上是内存溢出为你收集整理的python – 强制raw_input全部内容,希望文章能够帮你解决python – 强制raw_input所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1195821.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-03
下一篇 2022-06-03

发表评论

登录后才能评论

评论列表(0条)

保存