The exit command I have written is:
user_input = input("press Q to exit:")
if user_input == 'q':
exit()
In this case after launching the program I have to minimize Turtle Window and go back to terminal and press Q there and press enter to terminate it.
How can I implement it so that I can simply press Q to close window. Is there a way to maybe mode around the command turtle.exitonclick
?
1) Set Turtle Screen :
2) Make Function :
3) Bind Key:
so final look will be like this: