mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
15 lines
180 B
Python
15 lines
180 B
Python
import time
|
|
import _thread
|
|
|
|
|
|
def task2():
|
|
while True:
|
|
print("123")
|
|
time.sleep_ms(201)
|
|
|
|
|
|
_thread.start_new_thread(task2, ())
|
|
|
|
while True:
|
|
time.sleep_ms(200)
|