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.

16 lines
287B

  1. import threading
  2. import time
  3. def fun4():
  4. while True:
  5. print("222222222222222222222222222222222222222222222222")
  6. if __name__ == "__main__":
  7. aa = threading.Thread(target=fun4)
  8. aa.start()
  9. time.sleep(5)
  10. while True:
  11. print("111111111111111111111111111")