Contents

Test

Contents

Test page

your code here

python

import Tkinter as tk

root = tk.Tk()

app = tk.Frame(root)
app.pack()

root.mainloop()

Related Content