python 当前时间转字符串
时间: 2023-09-09 12:06:01 浏览: 85
Python获取当前时间的方法
可以使用 Python 的 datetime 模块来实现将当前时间转换为字符串的功能。以下是一个示例代码:
```python
import datetime
now = datetime.datetime.now()
date_string = now.strftime("%Y-%m-%d %H:%M:%S")
print(date_string)
```
这段代码会输出当前时间的字符串表示,格式为 "年-月-日 时:分:秒"。你可以根据需要调整 strftime 函数中的格式字符串来改变输出的格式。
阅读全文