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

nothingness
 avatar
unknown
python
2 years ago
173 B
5
Indexable
#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()

Editor is loading...