python时间格式转换为yyyy-MM-dd HH:MM:SS
时间: 2024-05-06 14:20:48 浏览: 116
可以使用strftime函数将Python中的时间格式转换成指定格式,其中%Y表示四位数的年份,%m表示月份,%d表示日期,%H表示小时,%M表示分钟,%S表示秒钟。
例如:
```python
import datetime
now = datetime.datetime.now()
formatted_time = now.strftime("%Y-%m-%d %H:%M:%S")
print(formatted_time)
```
输出:
```
2022-01-01 12:34:56
```
其中,now()函数获取当前时间,strftime函数将时间格式转换成指定格式。
相关问题
请写一个python脚本目标是将时间戳转换为 yyyy-mm-dd hh:mm:ss 格式,已经将yyyy-mm-dd hh:mm:ss 格式时间转换为时间戳
Python中,你可以使用`datetime`模块来进行日期和时间的操作。如果你已经有了一个时间戳(Unix时间戳),可以使用`datetime.fromtimestamp()`函数将其转换为`datetime`对象,然后使用`strftime()`方法将其格式化为"yyyy-mm-dd HH:mm:ss"。反之,如果你想从字符串格式转换为时间戳,可以用`strptime()`函数先解析,再用`timestamp()`方法获取。
这里是一个示例脚本:
```python
from datetime import datetime
# 转换时间戳为特定格式
def timestamp_to_str(timestamp):
dt = datetime.fromtimestamp(timestamp)
return dt.strftime('%Y-%m-%d %H:%M:%S')
# 从特定格式转换为时间戳
def str_to_timestamp(date_string):
format_str = '%Y-%m-%d %H:%M:%S'
dt = datetime.strptime(date_string, format_str)
return dt.timestamp()
# 示例
timestamp_example = 1689045600 # 假设这是某个时间戳
formatted_date = timestamp_to_str(timestamp_example)
print(f"Time in 'yyyy-mm-dd HH:mm:ss' format: {formatted_date}")
date_string_example = "2023-04-01 12:00:00"
timestamp_from_str = str_to_timestamp(date_string_example)
print(f"Timestamp from the given string: {timestamp_from_str}")
yyyy-MM-dd HH:mm:ss 转 yyyy-mm-dd hh:mm:ss
可以使用Python中的datetime模块来进行时间格式转换,具体代码如下:
```python
from datetime import datetime
old_time = '2022-01-01 12:00:00'
new_time = datetime.strptime(old_time, '%Y-%m-%d %H:%M:%S').strftime('%Y-%m-%d %I:%M:%S %p')
print(new_time)
```
输出结果为:2022-01-01 12:00:00 PM
阅读全文