mirror of
https://github.com/Xevion/tkinter-mini-projects.git
synced 2025-12-05 23:16:36 -06:00
12 lines
199 B
Python
12 lines
199 B
Python
from tkinter import *
|
|
|
|
root = Tk()
|
|
|
|
height = 5
|
|
width = 5
|
|
for i in range(height): #Rows
|
|
for j in range(width): #Columns
|
|
b = Entry(root, text="")
|
|
b.grid(row=i, column=j)
|
|
|
|
mainloop() |