Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

tk inter entry

import tkinter as tk

master = tk.Tk()
tk.Label(master, text="First Name").grid(row=0)
tk.Label(master, text="Last Name").grid(row=1)

e1 = tk.Entry(master)
e2 = tk.Entry(master)

e1.grid(row=0, column=1)
e2.grid(row=1, column=1)

master.mainloop()
Comment

PREVIOUS NEXT
Code Example
Python :: python switch case 3.10 Structural Pattern Matching 
Python :: dictionary get all keys 
Python :: make int into string python 
Python :: how to find lcm of 2 numbers in python 
Python :: how to let only admins do a command in discord.py 
Python :: get the name of all files in a computer in python 
Python :: list of dicts 
Python :: fibonacci number 
Python :: streamlit headings;streamlit text 
Python :: break in python 
Python :: driver find element with multiple classes python 
Python :: higlight words in python 
Python :: escape sequence in python 
Python :: python squared math function 
Python :: BURGERS2 
Python :: how to import and use keyboard with pygame 
Python :: decrypt vnc password 
Python :: python webbrowser module 
Python :: how to merge two dictionaries with same keys in python 
Python :: python remove duplicates 
Python :: sub matrix python 
Python :: postman authorization 
Python :: vscode python workding directory 
Python :: python check if array 
Python :: arithmetic in python 
Python :: python swap numbers 
Python :: python elapsed time in milliseconds 
Python :: bitwise operators python 
Python :: add option in python script 
Python :: cos inverse in python numpy 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =