python3之后版本读取网页的内容
生活随笔
收集整理的這篇文章主要介紹了
python3之后版本读取网页的内容
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
import urllib.request
url = "http://helloworldbook2.com/data/message.txt"
#直接通過url來獲取網頁數據
print('第一種')
response = urllib.request.urlopen(url)
code = response.getcode()
html = response.read()
mystr = html.decode("utf8")
response.close()
print(mystr)
輸出結果如下
第一種 Congratulations! You have just made your computer reach across the internet to get a secret message! I hope you are enjoying "Hello World! Computer Programming for Kids and Other Beginners". Have fun!Warren and Carter?
總結
以上是生活随笔為你收集整理的python3之后版本读取网页的内容的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 稀土是什么 什么是稀土
- 下一篇: java 三位数的水仙花数