1from tkinter import *
2root = Tk()
3
4example = Label(root, Text="Hello World!", borderwidth="2", relief="groove")
5# Releif is the effect what goes with the border.
6#" flat", "raised", "sunken", "ridge", "solid" are relief commands too.
7
8root.mainloop()