I Created A Simple SpinBox :
import tkinter as tk
win=tk.Tk()
sb=tk.SpinBox(win,from_=1,to=100)
sb.pack()
win.mainloop()
How Can I Set A Default Value Like;
In Combobox we can :
cmb=tk.Combobox(win,width=16)
cmb["value"]=tuple(range(1,100))
cmb.pack()
And:
cmb.current(23)
But How To Set In SpinBox Widget ?