GR
Size: a a a
GR
GR
GR
import threading
from time import sleep
def a():
sleep(1)
print('2')
thread = threading.Thread(target=a)
thread.start()
print('1')
thread.join()
GR
wg.Wait()
в гошке, который вроде как ни разу не асинх. Как бы если знаешь, как сделать с асинками такое - пиши自
АМ
自
АМ