首页上一页 1 下一页尾页 1 条记录 1/1页
没有运行结果啊,咋回事
发表在Python图书答疑
2019-03-16 悬赏:5 学分
《Python从入门到项目实践》第21章 网络爬虫框架
是否精华
是
否
版块置顶:
是
否
import requests headers={'user-agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.75 Safari/537.36'} url ='https://www.whatismyip.com/' respones=requests.get(url,headers=headers) print(respones.content.decode('utf-8'))