我正在尋找一個包,計算爲一個函數與輸入選定的號碼在崇高的文本2
例如計算: 我謹2.增加每個選擇的號碼「 |」是每個選擇的結束。崇高的文本 - 用選擇的號碼
label2 | =Label(top,bg="#BFBFBF",height=1,text="freq [Hz]")
label2 | .place(x=420,y=320)
label3 | =Label(top,bg="#BFBFBF",height=1,text="d.c.[%]")
label3 | .place(x=520,y=320)
slider1 | =Scale(top,variable=dutycycle_var,length=300,resolution=1,command=set_pwm)
slider1 | .place(x=500,y=5)
slider1 | .set(50)
我希望能夠迅速改變變量名:
label4 |=Label(top,bg="#BFBFBF",height=1,text="freq [Hz]")
label4 |.place(x=420,y=320)
label5 |=Label(top,bg="#BFBFBF",height=1,text="d.c.[%]")
label5 |.place(x=520,y=320)
slider3 | =Scale(top,variable=dutycycle_var,length=300,resolution=1,command=set_pwm)
slider3 |.place(x=500,y=5)
slider3 |.set(50)
而且如果可能的話我很好奇,如果其他操作也是可行的,如*,開方,動力.. 。
不錯!這很方便!謝謝 – kobey