摘要: BS4库简单使用: 1.最好配合LXML库,下载:pip install lxml 2.最好配合Requests库,下载:pip install requests 3.下载bs4:pip install bs4 4.直接输入pip没用?解决:环境变量->系统变量->Path->新建:C:\Pytho 阅读全文
posted @ 2019-01-20 16:43 4ra1n 阅读(1284) 评论(0) 推荐(0) 编辑
摘要: 多线程 基本实现: 第一种,函数方式 # -*- coding:utf-8 -*- import thread import time def print_time(threadName, delay): count = 0 while count < 5: time.sleep(delay) co 阅读全文
posted @ 2019-01-20 00:24 4ra1n 阅读(3461) 评论(0) 推荐(0) 编辑