如何让 raw_input 重复直到我想退出?
假设我想像这样使用 raw_input
:
code = raw_input("请输入您的三字母代码或空行来退出:")
下:
if __name__=="__main__":
我怎样才能让每次运行程序时它都会重复多次而不是一次?
另一个问题是编写什么代码可以满足“或空行退出(程序)”条件。
Say I want to use raw_input
like this:
code = raw_input("Please enter your three-letter code or a blank line to quit: ")
under:
if __name__=="__main__":
How can I let it repeat multiple times rather than just once every time I run the program?
Another question is to write what code can satisfy the condition "or a blank line to quit (the program)".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
最好的:
best: