python创建html文件,将背景设为黑色,文字设为白色
时间: 2023-02-17 21:08:46 浏览: 89
使用Pycharm(Python工具)新建项目及创建Python文件的教程
5星 · 资源好评率100%
在 Python 中可以使用第三方库如 BeautifulSoup 来创建 HTML 文件。
示例代码如下:
```python
from bs4 import BeautifulSoup
# 创建 HTML 文件
soup = BeautifulSoup("<html></html>", "html.parser")
# 在 <html> 标签中添加 <body> 标签
body = soup.new_tag("body")
body["style"] = "background-color: black; color: white;"
soup.html.append(body)
# 在 <body> 标签中添加文字
text = soup.new_tag("p")
text.string = "Hello, World!"
body.append(text)
# 将 HTML 文件写入文件
with open("index.html", "w") as file:
file.write(str(soup))
```
这段代码会创建一个简单的 HTML 文件,其中 <body> 标签的背景色为黑色,文字颜色为白色,并在 <body> 标签中添加 "Hello, World!" 的文字。
阅读全文