如何用python创建文件_如何用Python 新建一个Html 文件并能智能在浏览器打开
时间: 2024-03-01 21:55:11 浏览: 19
Pythonproject:创建HTML文件
要创建一个文件,可以使用Python内置的`open()`函数。例如,要创建一个文本文件并写入一些文本,可以使用以下代码:
```python
with open('example.txt', 'w') as f:
f.write('Hello, world!')
```
这将创建一个名为`example.txt`的文件,并将`Hello, world!`写入该文件中。
要创建一个HTML文件,并在浏览器中打开它,可以使用以下代码:
```python
import webbrowser
html = """
<!DOCTYPE html>
<html>
<head>
<title>My HTML Page</title>
</head>
<body>
<h1>Hello, world!</h1>
</body>
</html>
"""
with open('example.html', 'w') as f:
f.write(html)
webbrowser.open('example.html')
```
这将创建一个名为`example.html`的文件,并将HTML代码写入该文件中。然后,它将使用`webbrowser`模块中的`open()`函数在浏览器中打开该文件。
阅读全文