List Box : ListBox : GUI Tk PYTHON examples


PYTHON examples » GUI Tk » ListBox »

 

List Box


List Box: insert items


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()


           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo GUI Tk
» ListBox


Warning: Unknown: write failed: No space left on device (28) in Unknown on line 0

Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/var/lib/php/session) in Unknown on line 0