HOME/Articles/

tkinter example 14-justify-anchor-text (snippet)

Article Outline

Python tkinter (gui) example '14-justify-anchor-text'

14-justify-anchor-text

Python tkinter example: 14-justify-anchor-text

from tkinter import *

my_window = Tk() # crea un objeto por defecto

# CODE GOES HERE
my_window.title("Label")
my_window.geometry('400x350')

# Creamos label en nuestra ventana
label_1 = Label(my_window,
                 text='spacer')
label_2 = Label(my_window,
                text='Text\nText Text',
                borderwidth=1,
                relief='solid',
                font='Times 20',
                width=15,
                height=4,
                anchor=SW,
                justify=LEFT)
label_3 = Label(my_window,
                 text='spacer')
label_4 = Label(my_window,
                text='Text\nText Text',
                borderwidth=1,
                relief='solid',
                font='Times 20',
                width=15,
                height=4,
                anchor=SW,
                justify=RIGHT)

label_1.pack()
label_2.pack()
label_3.pack()
label_4.pack()

# bucle principal
my_window.mainloop()