摘要: ``` #!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = 'jiangwenwen' from bs4 import BeautifulSoup html_doc = """""" soup = BeautifulSoup(html_doc, 'html.parser') for row in soup.findAll(... 阅读全文
posted @ 2019-05-27 00:03 姜文文 阅读(1170) 评论(0) 推荐(1) 编辑