選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
220B

  1. import time
  2. from concurrent.futures import ThreadPoolExecutor
  3. def aa(a):
  4. print("aaaaaa")
  5. time.sleep(2)
  6. with ThreadPoolExecutor(max_workers=2) as t:
  7. while True:
  8. time.sleep(10)
  9. t.submit(aa, 1)