I have a problem with Python Turtle OUTPUT!

When I RUN the code of python turtle, it doesn’t show anything in the OUTPUT screen <>

This problem has already been noticed. Here is a similar topic: Screen turn black after code done .

Can this post help your problem:

1 Like

You can add the line
turtle.mainloop()
as the very last command in the program.
It will prevent the canvas window form closing.

1 Like