Update Uptated-Prototype/Threading-test.py

This commit is contained in:
2025-11-16 18:49:01 -08:00
parent 984c2dc4d0
commit b8e60333d3

View File

@@ -13,7 +13,7 @@ def TestThreadTwo():
time.sleep(1)
testcounter += 1
print(testcounter)
if testcounter >= 10:
if testcounter >= 30:
break
t1 = threading.Thread(target=TestThreadOne, daemon=False)