用python读取下面html文件,改写为字符串,取消所有缩进
时间: 2023-03-01 08:46:16 浏览: 197
将整个文件作为一个字符串-python学习
使用 Python 的 `BeautifulSoup` 库可以很方便地读取 HTML 文件并去除所有缩进。
安装方法:
```
pip install beautifulsoup4
```
代码示例:
```python
from bs4 import BeautifulSoup
# 读取 HTML 文件
with open("sample.html", "r") as file:
html = file.read()
# 创建 BeautifulSoup 对象
soup = BeautifulSoup(html, "html.parser")
# 取消缩进
text = soup.prettify(formatter=None)
# 输出字符串
print(text)
```
这样就可以得到一个不带缩进的字符串了。
阅读全文