OnlineRAG / app.py
AkshayaKeerthi's picture
Update app.py
db0b04f verified
raw
history blame
142 Bytes
import tkinter as tk
root = tk.Tk()
root.title("Hello, Tkinter!")
label = tk.Label(root, text="Hello, Tkinter!")
label.pack()
root.mainloop()