一.IE 浏览器 而IE各个版本典型的userAgent如下:Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0)Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2)Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)Mozilla/4.0 (compatible; MSIE 5.0; Windows NT) IE8的User-Agents:详细说明如下
Tqdm 是 Python 进度条库,可以在 Python 长循环中添加一个进度提示信息用法:tqdm(iterator) # 方法1: import time from tqdm import tqdm for i in tqdm(range(100)): time.sleep(0.01) 方法2: import time from tqdm import trange for i in trange(100): time.sleep(0.01) 结果: 0%| | 0/100 [00:00<