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