1
我得到這個錯誤: mySocket.send(userInput) 類型錯誤:必須是字符串或緩衝區,而不是例如Python的使用TKinter文本變量
userInput = StringVar()
e = Entry(gui, textvariable=userInput)
e.pack()
def sendPacket():
mySocket = socket.socket (socket.AF_INET, socket.SOCK_DGRAM)
mySocket.connect (('CENSORED', 2727))
mySocket.send (userInput)