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)".