写一个保存日志的函数
时间: 2023-12-26 16:06:22 浏览: 123
写日志函数
4星 · 用户满意度95%
下面是一个简单的 Python 函数,用于保存日志:
```python
import datetime
def save_log(message):
timestamp = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
with open("log.txt", "a") as log_file:
log_file.write(f"[{timestamp}] {message}\n")
```
该函数接受一个字符串参数 `message`,并将其写入到名为 `log.txt` 的文件中。每次调用函数时,它会在日志文件中添加一行,其中包含当前时间戳和消息内容。日志文件将被追加,而不是覆盖。
阅读全文