Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用 Python 3.x 中的 tkinter Spinbox Widget 获取浮点值(如 1.91、1.92 等)?
提前致谢
使用format和increment选项。Format 采用字符串格式值;使用类似于%.2f截断到小数点后两位的浮点数。
format
increment
%.2f
增量选项指定增量值;默认值为 1.0。
现在,get()在 Spinbox 上使用会返回str. 将其类型转换为 float 以获取浮点值。
get()
str