Clint Laskowski, CISSP

Archive for the ‘Test’ tag

Hello world!

without comments

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

from Tkinter import *
root = Tk()
root.title('Listbox')
list = Listbox(root, width=15)
list.pack()
for item in range(10):
    list.insert(END, item)
root.mainloop()

Written by Clint

July 15th, 2010 at 11:30 am

Posted in Uncategorized

Tagged with