Answers for "python tkinter entry center text"

3

how to align text in tkinter

Label(root, text='Pack', anchor='w').pack(fill='both')
# anchor='w' ---- w  for left
# anchor='e' ---- e  for right
# anchor='center' ---- center  for center
Posted by: Guest on May-31-2021
1

add text to the middle of the window tkinter

import tkinter

window = tkinter.Tk()       # creating the window object
window.title('my first GUI program')
window.minsize(width=600, height=500)

# label 
# adding text to the middle of the window
my_label = tkinter.Label(text='I am a Label')
my_label.pack()

window.mainloop()           # keeping the window until we close it
Posted by: Guest on February-01-2021

Python Answers by Framework

Browse Popular Code Answers by Language