Bootstrap

Python爬虫速成之路(1):获取网页源代码

 hello hello~ ,这里是绝命Coding——老白~💖💖 ,欢迎大家点赞🥳🥳关注💥💥收藏🌹🌹🌹
19d95742d45b4220ad0ae0359ffcba93.png

💥个人主页绝命Coding-CSDN博客
💥 所属专栏后端技术分享
这里将会不定期更新有关后端、前端的内容,希望大家多多点赞关注收藏💖

教程内容: 在本教程中,我们将使用Python编写一个简单的爬虫项目,来爬取指定网页的HTML内容(由于代码过于简单,就不过多解释)

import urllib.request as http
content=http.urlopen('https://www.toutiao.com/').read()
print(content.decode('utf-8'))

优化(推荐):

import requests  
response = requests.get('https://www.toutiao.com/')  
print(response.text)

 更多精彩内容请关注:绝命Coding

;