pikapython/examples/_thread/thread_issue1.py

15 lines
180 B
Python
Raw Normal View History

2024-08-03 17:05:14 +08:00
import time
import _thread
def task2():
while True:
print("123")
2024-08-09 03:30:07 +08:00
time.sleep_ms(201)
2024-08-03 17:05:14 +08:00
_thread.start_new_thread(task2, ())
while True:
2024-08-09 03:30:07 +08:00
time.sleep_ms(200)