簡體   English   中英

Python:如何將 UTC 時間戳從 mm/dd/yyyy hh:mm:ss AM 更改為 dd/mm/yyyy hh:mm:ss AM

[英]Python: How to change a UTC timestamp from mm/dd/yyyy hh:mm:ss AM to dd/mm/yyyy hh:mm:ss AM

我正在嘗試更改 csv 文件中 UTC 時間戳的格式,但似乎沒有任何效果。 一直說有一個 ValueError does not match format '%m/%d/%Y %I:%M:%S %p'下面是 CSV 列的示例

CSV 列示例

df[' UTC Event Timestamp'] = df[' UTC Event Timestamp'].astype(str)
string_col = str(df)
string_col.strip()

datetime.strptime(string_col, '%m/%d/%Y %I:%M:%S %p')
datetime.strptime(string_col, '%m/%d/%Y %I:%M:%S %p').strftime('%d/%m/%Y %I:%M:%S %p')

print(string_col)
df['UTC Event Timestamp'] = pd.to_datetime(df['UTC Event Timestamp'])
df['UTC Event Timestamp'] = df['UTC Event Timestamp'].apply(lambda x: x.strftime('%d/%m/%Y %I:%M:%S %p'))

您可以使用

df['string_col'].apply(lambda row: datetime.strptime(row, '%m/%d/%Y %I:%M:%S %p').strftime('%d/%m/%Y %I:%M:%S %p'))

將列轉換為日期時間格式。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM