c:\Users\ADMIN\Desktop\math project\calculator.py

nothingness
mail@pastecode.io avatarunknown
python
24 days ago
173 B
2
Indexable
Never
#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()