首先,在你想保存的地址中新建一个.html文件(win11新建txt,然后另存为把.txt后缀改为.html即可)
然后,上代码
import urllib.request
resp = urllib.request.urlopen('http://66666/')
file="D:\workplace\888.html"#存在本地地址
with open(file,"w")as f:
f.write(resp.read().decode('utf-8'))#存在乱码,需要重新选择编码器
print(file)
即可保存一个网页首页内容