python gui size
root.geometry('69x420')
how to set gui position tkinter python
import tkinter as tk #We'll use tkinter
class main: #This will be the main class
def __init__(self,master):
master.title('Simple Interface') #This is the title of the window
master.geometry('1200x700+0+0') #You can utilize +300+300 for example
#So now you can change the position of
#Your window
if __name__=='__main__':
master = tk.Tk() #Master is the name of our window
main = main(master)
master.mainloop #We're creating the loop
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us