Akash
0
Q:

pack tkinter

from Tkinter import *

root = Tk()

listbox = Listbox(root)
listbox.pack(fill=BOTH, expand=1)

for i in range(20):
    listbox.insert(END, str(i))

mainloop()
1
Label().pack()
0

New to Communities?

Join the community