标签: python html carriage-return
这可能非常简单,但我有一些我从网站上下载的HTML代码。代码如下所示:
<P>hello1 world1</P><P>hello2 world2</P><P>hello3 world3</P>
我想调整html,以便在文本文件中打开它时看起来像这样:
<P>hello1 world1</P> <P>hello2 world2</P> <P>hello3 world3</P>
是否有一种简单的方法来包含回车(不使用\ n或BR)?