python时间转换字符串
时间: 2023-10-07 14:07:55 浏览: 86
要将时间转换为字符串,可以使用strftime()函数。以下是一个示例:
```python
import datetime
now = datetime.datetime.now()
print(now.strftime("%Y-%m-%d %H:%M:%S"))
```
输出:
```
2022-01-01 12:00:00
```
在上面的代码中,我们使用datetime模块获取当前时间,并使用strftime()函数将其转换为字符串。strftime()函数接受一个参数,该参数是格式化字符串,指示要包含哪些时间信息。在这个例子中,我们使用了"%Y-%m-%d %H:%M:%S"格式,它表示年份、月份、日期、小时、分钟和秒。
相关问题
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"的字符串形式的当前时间。
阅读全文