类型错误: 'int'对象不支持项目分配, 在线程中



我有以下两个模块:

第一个 Keyboard.py :

import USB,evdev,threading,sys
global codigo
codigo = [1]
class Teclado:
    def __init__(self,port):
        self.puerto = USB.usb(port)
    def iniciar_teclado(self):
        p = threading.Thread(target=self.puerto.obtener_evento,args=(codigo))
        p.start()
        while 1:
            if codigo[0] == evdev.ecodes.KEY_A:
                print('A')
            elif codigo[0] == evdev.ecodes.KEY_B:
                print('B')

USB.py :

import evdev,os,signal,sys
class usb:
    def __init__(self,dev):
        self.device = evdev.InputDevice(dev)
        print(self.device)
    def obtener_evento(self,c):
        for event in self.device.read_loop():
            if event.type == evdev.ecodes.EV_KEY and event.value == 1:
                c[0] = event.code

因此,为了在线程中通过引用传递变量,我使用单个元素的列表。作为帮助,参考以下代码:

>>> c = [1]
>>> def f(list):
>>>     list[0] = 'a'
>>> f(c)
>>> c[0]
'a'

但是在我的代码中,在

c[0] = event.code

python tell me

TypeError: 'int' object不支持项赋值

try

p = threading.Thread(target=self.puerto.obtener_evento,args=(codigo,))

相关内容

  • 没有找到相关文章

最新更新