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

Python Pandas - ส่งคืนส่วนประกอบที่ชื่อtuple-like


ในการส่งคืนส่วนประกอบที่มีชื่อเหมือนทูเพิล ให้ใช้ timedelta.components ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

TimeDeltas เป็นไลบรารี datetime มาตรฐานของ Python ใช้การแทนค่า timedelta ที่แตกต่างกัน สร้างวัตถุ Timedelta

timedelta = pd.Timedelta('1 days 10 min 20 s')

ส่งคืนส่วนประกอบที่มีชื่อเหมือนทูเพิล

timedelta.components

ตัวอย่าง

ต่อไปนี้เป็นรหัส

import pandas as pd

# TimeDeltas is Python’s standard datetime library uses a different representation timedelta’s
# create a Timedelta object
timedelta = pd.Timedelta('1 days 10 min 20 s')

# display the Timedelta
print("Timedelta...\n", timedelta)

# return a components namedtuple-like
res = timedelta.components

# display the component
print("\nComponent...\n", res)

ผลลัพธ์

ซึ่งจะได้รหัสดังต่อไปนี้

Timedelta...
 1 days 00:10:20

Component...
 Components(days=1, hours=0, minutes=10, seconds=20, milliseconds=0, microseconds=0, nanoseconds=0)