Witam
Proszę o pomoc.
Nie wiem dlaczego po uruchomieniu programu pokazuje mi się błąd.
Z góry przepraszam jeśli problem jest banalny, dopiero uczę się programować :)
Dziękuję za wszystkie podpowiedzi
import threading as th
import time
class Watek(th.Thread):
def __init__(self,numer):
self.numer= numer
super().__init__()
#
def run(self):
for i in range(100):
time.sleep(1)
print("Watek" +str(self.numer)+"-"+str(i))
#
w1 = Watek(1)
w2 = Watek(2)
w1.start()
w2.start()
================
wynik programu
C:\Users\user\PycharmProjects\zaliczenielab\venv\Scripts\python.exe C:/Users/user/PycharmProjects/zaliczenielab/lab1wieloa.py
Traceback (most recent call last):
File "C:/Users/user/PycharmProjects/zaliczenielab/lab1wieloa.py", line 4, in <module>
class Watek(th.Thread):
AttributeError: module 'threading' has no attribute 'Thread'
Exception ignored in: <module 'threading' from 'C:\Users\user\AppData\Local\Programs\Python\Python36\lib\threading.py'>
AttributeError: module 'threading' has no attribute '_shutdown'
Process finished with exit code 1