ホームページ >バックエンド開発 >Python チュートリアル >Pythonスレッド作成例
def test_func(id):
for i in range(0,5):
sleep(1)
print('スレッド %d が実行中 %d' % (id,i))
threads = []
for i in range(0,3):
t = threading.Thread(target=test_func, args=(i,))
thread.append(t)
スレッド内の t の場合:
t.start()
for t in thread:
t.join()