python:实现找HTML文件出里面的正文
# coding=utf-8
import urllib2
from bs4 import BeautifulSoup
def show_content(url, content_tag, content_tag_class):
content = urllib2.urlopen(url)
# coding=utf-8
import urllib2
from bs4 import BeautifulSoup
def show_content(url, content_tag, content_tag_class):
content = urllib2.urlopen(url)