$ 0 0 You need to specify an anchor option when creating the Label widget:from tkinter import *popup = Tk()Label(popup, text="Testing", width=25, anchor="w").grid( row=1, column=1, sticky="w", padx=(0,10), pady=10)popup.mainloop()Result: