0
How to fill entrybox text from right to left in tkinter
I make calculator
2 Réponses
0
By increasing the value of column.
0
Use columnspan=x in grid, where x is number of columns. Example:
tkinter.Label(root, text="Text").grid(row=0, column=0, columnspan=3)