I am trying to find code to make my turtle window automatically expand to fit the computer/HDMI screen. I found the following code that works for doing this with tkinter:
root = tkinter.Tk()
root.overrideredirect(True)
root.geometry("{0}x{1}+0+0".format(root.winfo_screenwidth(), root.winfo_screenheight()))
but it doesnt work for turtle, im assuming because of the "root = tkinter.Tk()"
What can I use in turtle to accomplish this?