欢迎光临小站,愿能为您提供帮助与启发,热爱分享、享受分享、乐于分享,让我们携手共同进步。
import urllib.request
def get_page(url):
res = urllib.request.urlopen(url)
content = res.read().decode()
return content
str1 = get_page('https://www.bphc.com.cn/front/noroomstaff/checkHavePlanShow')
print(str1)