TKINTER Maksimalkan jendela
screen_width, screen_height = root.winfo_screenwidth(), root.winfo_screenheight()
root.geometry("{}x{}".format(screen_width, screen_height))
ARtemachka