Answers for "How to repeat a python file"

0

How to repeat a python file

while True:
    cmd = raw_input('Do you want to quit? Enter \'q\'!')
    if cmd == 'q':
        break
Posted by: Guest on August-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language