python 时间转字符串
时间: 2023-09-30 19:01:39 浏览: 83
要将 Python 中的时间转换为字符串,可以使用 `strftime()` 函数。下面是一个简单的示例:
```python
import datetime
now = datetime.datetime.now()
now_str = now.strftime("%Y-%m-%d %H:%M:%S")
print(now_str)
```
输出将会是当前时间的字符串表示,格式为 `年-月-日 时:分:秒`。你还可以根据需要自定义日期时间格式,具体的格式代码可以参考 Python 的官方文档:[strftime() 和 strptime() 格式化指南](https://docs.python.org/3/library/datetime.html#strftime-and-strptime-format-codes)。
相关问题
python 当前时间转字符串
可以使用 Python 的 datetime 模块来实现将当前时间转换为字符串的功能。以下是一个示例代码:
```python
import datetime
now = datetime.datetime.now()
date_string = now.strftime("%Y-%m-%d %H:%M:%S")
print(date_string)
```
这段代码会输出当前时间的字符串表示,格式为 "年-月-日 时:分:秒"。你可以根据需要调整 strftime 函数中的格式字符串来改变输出的格式。
python转换当前时间字符串
可以使用Python中的datetime模块来获取当前时间,并将其转换为字符串形式。以下是示例代码:
```
from datetime import datetime
now = datetime.now()
current_time = now.strftime("%Y-%m-%d %H:%M:%S")
print("当前时间为:", current_time)
```
输出结果为类似于"2022-01-01 12:00:00"的字符串形式的当前时间。
阅读全文