摘要:
1. 多线程 不带参数 from threading import Thread def func(): for i in range(100): print('函数', i) if __name__ == '__main__': #主程序 t = Thread(target=func)# 创建多线 阅读全文
posted @ 2022-05-05 11:44
我在春天等伱
阅读(271)
评论(0)
推荐(0)
摘要:
网址 : https://desk.zol.com.cn/bizhi/9911_119095_2.html 1. 爬取网站图片代码 无下载 import requests import re import json url = 'https://desk.zol.com.cn/bizhi/9911_ 阅读全文
posted @ 2022-05-05 10:57
我在春天等伱
阅读(118)
评论(0)
推荐(0)