python获取当前时间(年月日 时分秒)的字符串格式
时间: 2024-02-03 22:08:07 浏览: 263
python获取当前日期和时间的方法
5星 · 资源好评率100%
可以使用Python中的time模块来获取当前时间,并将其格式化为字符串。下面是两种不同的方法:
方法一:
```python
import time
# 获取当前时间的时间戳
current_timestamp = time.time()
# 将时间戳转换为本地时间的struct_time对象
local_time = time.localtime(current_timestamp)
# 使用strftime()方法将struct_time对象格式化为指定的时间字符串
current_time = time.strftime("%Y-%m-%d %H:%M:%S", local_time)
# 输出当前的年月日时分秒
print(current_time)
```
方法二:
```python
import time
# 使用strftime()方法将当前时间格式化为指定的时间字符串
current_time = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(time.time()))
# 输出当前的年月日时分秒
print(current_time)
```
阅读全文