requests() 函数+存储数据

首先调用requests库,使用requests.get(‘URL’)获取文件,返回的是Response对象。
然后需要把Response对象用合适的数据形式返回。
存储数据:
存储文件的三个步骤:打开文件,存储文件,关闭文件。

import requests
res = requests.get('https://localprod.pandateacher.com/python-manuscript/crawler-html/exercise/HTTP%E5%93%8D%E5%BA%94%E7%8A%B6%E6%80%81%E7%A0%81.md')
print(res.status_code)

note = res.text
a = open ('代码响应.txt','a+')
a.write(note)
a.close()

print(note[:100] )

你可能感兴趣的:(语法)