标签: python tkinter
This is the picture
from Tkinter import * root = Tk() root.geometry('1000x500') one = Label(root, text='this is not row 5 or column 6!') one.grid(row=5, column=5) root.mainloop()