我需要将用户输入的值作为字符串使用,但它们是这样的('user input',),我需要去掉('',)。
layout = [ [sg.Text("window")], [sg.Text("costumer name"), sg.InputText(key="insert name")],
因此,在执行事件(用户单击按钮)后
costumer = values["insert name"],
print (costumer)
当a打印用户输入时,我得到的是('costumer name jhon',)
,所以我的问题是,如何在没有(',')的情况下得到用户输入,我只想要= "costumer name is jhon"
1条答案
按热度按时间vuktfyat1#
正如@JasonYang指出的,就是因为这一行的逗号:
逗号使
costumer
成为一个单元素元组。删除逗号。