gpt4 book ai didi

python - 如何在带有 IntVar 的标签中使用小数点

转载 作者:太空宇宙 更新时间:2023-11-03 11:01:07 26 4
gpt4 key购买 nike

from tkinter import *
v=Tk()
v.geometry("400x400")
a= IntVar()
a.set(5.494949)


l=Label(textvariable= a)
l.pack()

我使用它并返回带有 5.494949 的标签,我需要 5.49

最佳答案

这可能会有所帮助:)

from tkinter import *
v=Tk()
v.geometry("400x400")
a= IntVar()
# round function simply rounds the var upto given number of decimal places in the function argument
a.set(round(5.494949,2))

l=Label(textvariable= a)
l.pack()

关于python - 如何在带有 IntVar 的标签中使用小数点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32158180/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com