以下程序中,a= Spinbox(win1,from_=10,to=100)的作⽤是?( )
from tkinter import *
win1= Tk()
a= Spinbox(win1,from_=10,to=100)
a.pack()
mainloop()