标签: python pandas
使用LDAP已从Active Directory中提取数据集。日期看起来像" 20180111120926.0Z"它已被加载到pandas DataFrame中。如何将其转换为正常日期?
答案 0 :(得分:2)
这是你需要的吗?
pd.to_datetime('20180111120926.0Z',format='%Y%m%d%H%M%S.%fZ') Out[734]: Timestamp('2018-01-11 12:09:26')