hello? 发表于 2022-8-3 13:44:03

【小白问题】

import requests

url='http://www.baidu.com'
html=requests.get(url)
html.encoding='utf-8'
print(html.text)


为什么这样打印出来的没有整齐的格式?

wp231957 发表于 2022-8-3 13:53:41

这就是网页源码,你想要啥格式呢

临时号 发表于 2022-8-3 13:54:47

就是这样的格式啊

hello? 发表于 2022-8-3 16:02:00

wp231957 发表于 2022-8-3 13:53
这就是网页源码,你想要啥格式呢

因为之前我用下面的代码输入http://fishc.com,得到的是很整齐的代码
import urllib.request as u

url="http://fishc.com"
reponse=u.urlopen(url)
html=reponse.read().decode('utf-8')
print(html)



然后换成用requests.get()后(也就是题目中的代码),输入百度的网址,就看起来没有鱼c那么整齐,有些乱(可能是因为见少了),就感觉两种方法可能有不同
但然后我用题目中的代码输入鱼c网址的之后得到的结果,和这段输入鱼c网址结果效果是差不多的。
{:10_266:}

hello? 发表于 2022-8-3 16:03:51

wp231957 发表于 2022-8-3 13:53
这就是网页源码,你想要啥格式呢

两种方法都是获取网页源码吗,有没有一些不同{:10_245:}

hello? 发表于 2022-8-3 16:05:22

临时号 发表于 2022-8-3 13:54
就是这样的格式啊

{:10_315:}

wp231957 发表于 2022-8-3 16:19:52

hello? 发表于 2022-8-3 16:02
因为之前我用下面的代码输入http://fishc.com,得到的是很整齐的代码




html代码不都是那样吗?乱糟糟的!那个是整齐的,贴出来看看

hello? 发表于 2022-8-3 16:50:47

wp231957 发表于 2022-8-3 16:19
html代码不都是那样吗?乱糟糟的!那个是整齐的,贴出来看看

{:10_297:}
页: [1]
查看完整版本: 【小白问题】