摘要:
import time import threading def func_one(name): for num in range(1,6): print(f"{name}第{num}次执行") time.sleep(1) def func_two(name): for num in range(1 阅读全文
摘要:
第一次调试 from threading import Thread from fake_useragent import UserAgent import requests from time import sleep for i in range(1,11): url = f"https://w 阅读全文