如何转载

How to reprint the

我怎么会重复 raw_input 这句话,因为每次我或用户回答 python 写的问题时都会说按任意键继续,但我想重复这个问题以了解是否用户想使用该程序做任何其他事情我希望你能帮助我。

你可以使用这个简单的代码

x  = raw_input("Enter a command or q to quit")
while ( x != 'q' ) : 
    ## your code goes.
    x  = raw_input("Enter a command or q to quit")

这将递归地要求用户输入,直到他决定退出。

您的意思如下?

bool = True 
while bool:
    input = raw_input(query) #Get raw_input
    if condition: #check if you should end the loop or ask again
        bool = False #end loop
    #your code here

bool 用作布尔值来检查条件是否发生,应该将其命名为其他名称,例如 run_loop 或类似名称。