python 时间转字符串
时间: 2023-09-23 19:11:37 浏览: 41
可以使用strftime()方法将时间转换为指定格式的字符串,例如:
```python
import datetime
now = datetime.datetime.now()
time_str = now.strftime('%Y-%m-%d %H:%M:%S')
print(time_str)
```
这段代码将当前的时间转换为形如"2022-01-01 12:00:00"的字符串。你可以根据自己的需要修改时间格式。如果需要将字符串转换为时间对象,可以使用strptime()方法。
相关问题
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"的字符串形式的当前时间。
阅读全文