I am trying to write some code that will start a Screen fullscreen (fill the whole screen without having to click the maximize button)
def __init__(self, states = 2):
self.window = turtle.Screen()
#self.window.screensize(1920,1080)
self.window.title('States')
self.turtles = []
self.window.screensize maxes the resolution 1920x1080, but only inside the small screen. To reach the full screen width and height, you have to maximize it. Any way of fixing this problem?