Tkinter.Spinbox - create and manipulate Spinbox widgets
A spinbox is an extended entry widget that allows the user to move, or spin, through a fixed set of ascending or descending values such as times or dates
Base Classes
../Widget, ../BaseWidget, ../Pack, ../Place, ../Grid, ../Misc
Gotchas
Example
1 from Tkinter import *
2 root = Tk()
3
4 spin = Spinbox(root, from_ = 0, to = 100)
5 spin.pack()
6
7 root.mainloop()
8
Screen Shot