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 ウィジェットを使用して float 値 (1.91、1.92 など) を取得する方法はありますか?
前もって感謝します
formatおよびオプションを使用しincrementます。Format は文字列形式の値を取ります。%.2f小数点以下 2 桁に切り捨てられた浮動小数点数のようなものを使用します。
format
increment
%.2f
増分オプションは、増分値を指定します。デフォルトは 1.0 です。
現在、get()Spinbox で を使用すると、 のインスタンスが返されますstr。浮動小数点値を取得するには、それを float に型キャストします。
get()
str