with open('/path/to/your/log_file.log', 'a') as file: file.write(f"Hello from run_file.py at {current_time}\n")
时间: 2024-04-09 07:33:03 浏览: 72
将log写入到文件
您可以使用Python的文件操作功能来打开并写入日志文件。以下是一个示例代码:
```python
import datetime
current_time = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
with open('/path/to/your/log_file.log', 'a') as file:
file.write(f"Hello from run_file.py at {current_time}\n")
```
请确保将`/path/to/your/log_file.log`替换为实际的日志文件路径。这段代码将在日志文件中追加一条包含当前时间的消息。
阅读全文