📅  最后修改于: 2022-03-11 14:45:59.075000             🧑  作者: Mango
from tkinter import *
root = Tk()
example = Label(root, Text="Hello World!", borderwidth="2", relief="groove")
# Releif is the effect what goes with the border.
#" flat", "raised", "sunken", "ridge", "solid" are relief commands too.
root.mainloop()