摘要:
# -*- coding:utf-8 -*- from bs4 import BeautifulSoup as bs import re html_doc = """ The Dormouse's story试试 The Dormouse's story Once upon a time there were three little sisters; and their names we... 阅读全文
摘要:
# -*- coding:utf-8 -*- from urllib.request import urlopen from bs4 import BeautifulSoup as bs import re from pymysql import cursors import pymysql #请求URL并把把结果用UTF-8编码 resp=urlopen('https://en.wikip... 阅读全文