Files
tkinter-mini-projects/excel.py
Xevion 5948e26c4e init
2019-07-25 22:21:56 -06:00

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()