python ttk.Entry how to center the input

user12345 picture user12345 · Jan 17, 2013 · Viewed 21.4k times · Source

screenshot of my app

Here is a screenshot of a program I am writing using Python Tkinter. I use ttk.Entry widget to get the user input.

I would like to know how to center the input in the Entry (as you can see, the input is now stuck to the left part of the widget)

Answer

Abe Karplus picture Abe Karplus · Jan 17, 2013

Entry widgets take the option justify, which for centered text should be 'center'. When creating the widget, do something like

e = ttk.Entry(master, ..., justify='center')