gpt4 book ai didi

python - 类型错误 : can only concatenate str (not "set") to str

转载 作者:行者123 更新时间:2023-12-05 09:13:03 25 4
gpt4 key购买 nike

基本上,我正在尝试使用我在 tkinter 中制作的 Entry box 作为 input,将 value 传递到我的信号发生器。但是我得到了标题中提到的错误。如果我通过终端传递 value,它可以正常工作,所以这可能是 tkinter 的问题,而不是仪器(Rohde and Schwarz SMB100A)的问题。

我尝试按照错误提示将值作为 string 传递,但没有成功。

import visa
import tkinter as tk


rm = visa.ResourceManager()
print(rm.list_resources())
inst = rm.open_resource('TCPIP::192.168.100.200::INSTR')

#This one would work, after i bind the function to the button,
#i just press it and it passes the preset value.
#All i want to do is pass a value through the Entry widget,
#instead of having a set one.
#freq = str(250000)
#def freqset_smb100a():
#inst.write("SOUR:FREQ:CW " + freq)

inst.write("OUTP ON")

def freqset_smb100a():
inst.write(f"SOUR:FREQ:CW " + {str(input_var.get())})



HEIGHT = 400
WIDTH = 600

root = tk.Tk()

input_var = tk.StringVar()

canvas = tk.Canvas(root, height=HEIGHT, width=WIDTH)
canvas.pack()

frame = tk.Frame(root, bg='#80c1ff', bd=5)
frame.place(relx=0.5, rely=0.1, relwidth=0.75, relheight=0.1, anchor='n')

button = tk.Button(frame, text="Set Freq", font=40, command=freqset_smb100a)
button.place(relx=0.7, relheight=1, relwidth=0.3)

entry = tk.Entry(frame, font=15, textvariable=str(input_var.get))
entry.place(relx=0.35, relheight=1, relwidth=0.3)


root.mainloop()

这是我在按下 button 传递值时遇到的错误。

Exception in Tkinter callback
Traceback (most recent call last):
File "C:\Users\vrozakos\AppData\Local\Programs\Python\Python37-32\lib\tkinter\__init__.py", line 1705, in __call__
return self.func(*args)
File "C:/PyTests/Signal_gen_v2.py", line 19, in freqset_smb100a
inst.write(f"SOUR:FREQ:CW " + {str(input_var.get())})
TypeError: can only concatenate str (not "set") to str

最佳答案

你的问题是在 f"SOUR:FREQ:CW "+ {str(input_var.get())}{str(...)}是一个集合文字。它按原样就地创建,您正尝试将其添加到字符串中。

你想要的格式化字符串就像是

 print(f"SOUR:FREQ:CW {input_var.get()}")

也就是说,{} 之间的任何内容都将被评估、转换为字符串并插入其中。

如果您的设备不支持较新的 python 版本,删除字符串前面的 f,然后直接生成

write("SOUR:FREQ:CW" + str(input_var.get()))

关于python - 类型错误 : can only concatenate str (not "set") to str,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56791883/

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