from tkinter import * root = Tk() for r in range(0, 5): for c in range(0, 5): cell = Entry(root, width=10) cell.grid(row=r, ...
確定! 回上一頁