from tkinter import * def to_help(): help_win = Toplevel() help_win.title("Help / Info") Label(help_win, text="Help / Info", font=("Arial", "14", "bold")).grid(row=0, padx=10, pady=5) Label(help_win, text="Enter a weight and press a button to convert.", wraplength=250).grid(row=1, padx=10) Button(help_win, text="Dismiss", command=help_win.destroy).grid(row=2, pady=10) if __name__ == "__main__": root = Tk() root.title("Weight Converter") Button(root, text="Help / Info", command=to_help).pack(padx=20, pady=20) root.mainloop()