Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

โปรแกรม Pandas แปลงสตริงวันที่เป็นเวลา


ในโปรแกรมนี้ เราจะแปลงสตริงวันที่ เช่น "24 สิงหาคม 2020" เป็น 2020-08-24 00:00:00 เราจะใช้ฟังก์ชัน to_datetime() ในไลบรารีแพนด้าเพื่อแก้ปัญหานี้

อัลกอริทึม

Step 1: Define a Pandas series containing date string.
Step 2: Convert these date strings into date time format using the to_datetime format().
Step 3: Print the results.

โค้ดตัวอย่าง

import pandas as pd

series = pd.Series(["24 August 2020", "25 December 2020 20:05"])
print("Series: \n", series)

datetime = pd.to_datetime(series)
print("DateTime Format: \n", datetime)

ผลลัพธ์

Series:
0            24 August 2020
1    25 December 2020 20:05
dtype: object
DateTime Format:
0   2020-08-24 00:00:00
1   2020-12-25 20:05:00
dtype: datetime64[ns]