So I want to make an app in turtle python. I want the screen to be full screen. So how do I do that?
Here is my code:
import turtle
wn = turtle.Screen()
wn.title("Example Window")
wn.setup(width=600, height=600)
wn.mainloop()
How do I make a full screen?