ИT
Size: a a a
ИT
ИT
СВ
A
A
ИT
СВ
ИT
ИT
СВ

ИT
СВ
A
СВ
from multiprocessing import Process
def test_sleep():
while True:
pass
if __name__ == '__main__':
count_tgread = 2
list_thread = []
for x in range(count_tgread):
test_thread1 = Process(target=test_sleep,daemon=True)
list_thread.append(test_thread1)
test_thread1.start()
for th in list_thread:
th.join()
A
ИT
ИT
ИT
DA
ИT