Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは私がPythonTkinterを使って書いているプログラムのスクリーンショットです。ttk.Entryウィジェットを使用してユーザー入力を取得します。
ttk.Entry
入力を中央に配置する方法を知りたいEntryです(ご覧のとおり、入力はウィジェットの左側に固定されています)
Entry
エントリウィジェットはオプションを取りますjustify。これは、中央揃えのテキストの場合は'center'です。ウィジェットを作成するときは、次のようにします
justify
'center'
e = ttk.Entry(master, ..., justify='center')