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

nothingness
mail@pastecode.io avatar
unknown
python
a year ago
173 B
3
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()