from turtle import Turtle, Screen
timmy_the_turtle = Turtle()
timmy_the_turtle.shape("turtle")
screen = Screen()
screen.exitonclick()
print("Hi")
When I run this I get this output:
2023-06-18 13:08:23.720 Python[71369:2018591] WARNING: Secure coding is not enabled for restorable state! Enable secure coding by implementing NSApplicationDelegate.applicationSupportsSecureRestorableState: and returning YES.
What do I do?
I am expecting hi to be printed but nothing happens.