tkinter
from tkinter import * #import
def main():
screen = Tk()#initialize
screen.geomerty("num1xnum2") #pixels
screen.title("Title")
screen.cofigure(bg = 'grey')#hex colors or normal colors
screen.mainloop()
main()#call
tkinter
from tkinter import * #import
def main():
screen = Tk()#initialize
screen.geomerty("num1xnum2") #pixels
screen.title("Title")
screen.cofigure(bg = 'grey')#hex colors or normal colors
screen.mainloop()
main()#call
tkinter
from tkinter import *
from tkinter import ttk
root=Tk()
entry1=Entry(root,cursor="fleur",insertbackground="red")
entry1.pack()
Button(root,text="Get cursor type and colour", command=lambda: print(entry1['cursor'],entry1['insertbackground'])).pack()
root.mainloop()
tkinter python 3
import tkinter as tk
obj = tk.Tk() # Creates a tkinter object
label = tk.Label(obj, text="This is a text button")
python tkinter
import tkinter as tk #import the tkinter module as tk
core = tk.Tk() #makes the core (or root)
mylabel = tk.Label(core, text="Hello world!") #makes a label
mylabel.grid(row=0, column=1) #places the object in a virtual grid
tk.Pack() #Pack the object(s)
core.mainloop()#Make the application a loop (needed)
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