The labels are currently side by side which is what I want. However each label's width is different. Is there a way to make each label have the same width?
Also is there a method that allows the labels to the have equal measurements and simultaneously fill all the way up to 250?
Here is my current code:
from tkinter import *
root = Tk()
root.geometry("250x50")
w = Label(root, text="Label UNO", bg="red", fg="white")
w.pack(side=LEFT)
w = Label(root, text="Label2", bg="green", fg="black")
w.pack(side=LEFT)
w = Label(root, text="Label DREI", bg="blue", fg="white")
w.pack(side=LEFT)
root.mainloop()