我有一个Pandas Dataframe ,其中的日期时间可以是Wed Oct 02 10:55:08 BST 2019或Wed Oct 02 10:55:08 GMT 2019。我希望所有这些日期时间都是2019-01-10 10:55:08的日期时间,其中时间是GMT。谢啦,谢啦
Wed Oct 02 10:55:08 BST 2019
Wed Oct 02 10:55:08 GMT 2019
2019-01-10 10:55:08
s4n0splo1#
您需要使用标准库的from datetime并转换为date time
from datetime import datetime df['datecolumn'].apply(lambda x: datetime.strptime(x, "%a %b %d %I:%M:%S GMT %Y") if 'GMT' in x else x)
1条答案
按热度按时间s4n0splo1#
您需要使用标准库的from datetime并转换为date time