gpt4 book ai didi

python - 将一分钟的分钟数转换为小时数和分钟数python

转载 作者:行者123 更新时间:2023-12-04 18:19:48 25 4
gpt4 key购买 nike

我在Pandas中有一个Dataframe,其中有一个以分钟为单位的名为“duration”的列。

我想获得一个新列,该列以小时:分钟(HH:MM)的形式给出持续时间。

最佳答案

假设您的DataFrame如下所示:

df = pd.DataFrame({'duration': [20, 10, 80, 120, 30, 190]})

结合使用 pd.to_datetime strftime :
pd.to_datetime(df.duration, unit='m').dt.strftime('%H:%M')

0 00:20
1 00:10
2 01:20
3 02:00
4 00:30
5 03:10
dtype: object

关于python - 将一分钟的分钟数转换为小时数和分钟数python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51565978/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com