Make Tkinter window in Full screen mode
In order to Make Tkinter window in Full screen mode we need to : initialize the main loop window and set up a title set the root fullscreen attribute to true the code is as follows import tkinter root=tkinter.Tk() root.attributes(‘-fullscreen’,True) root.mainloop()