You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- import threading
- import time
-
-
-
- def fun4():
- while True:
- print("222222222222222222222222222222222222222222222222")
-
- if __name__ == "__main__":
-
- aa = threading.Thread(target=fun4)
- aa.start()
- time.sleep(5)
- while True:
- print("111111111111111111111111111")
|