简体   繁体   中英

I am trying python threads … but its giving me error saying : Exception in thread send

import threading

class Messanger(threading.Thread):
    def run(self):
        for _ in range(10):
            print(threading.currentThread.getName())

x = Messanger(name="send") 
y = Messanger(name="received")

x.start()

y.start()

只需更改print(threading ....)即可打印(self.getName())

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM