#tkinter : Python interface : Used to build GUI apps from tkinter import * root=Tk() 1=Label1(root, text="This is a label", bg = "black") 1.pack() root.mainloop()