2025-09-10:仓库迁移

This commit is contained in:
2025-09-10 16:12:45 +08:00
parent e0e49b0ac9
commit 3130e336a1
146 changed files with 4066 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import time
def countdown(n):
while n > 0:
print("T-minus", n)
n -= 1
time.sleep(5)
def countdown2(n):
while n > 0:
print("T-minus", n)
n -= 1
time.sleep(6)
from threading import Thread
t = Thread(target=countdown, args=(10, ))
t.start()
t2 = Thread(target=countdown2, args=(10, ))
t2.start()