gpt4 book ai didi

python - 如何用Python分割日期

转载 作者:行者123 更新时间:2023-12-01 07:19:45 24 4
gpt4 key购买 nike

我的日期如下。

7/1 09:00
7/1 12:00
7/1/19 12:00
7/2/19 13:00
7/3 4:00*

我只想分割这个日期以获得没有时间和年份的日期。

7/1 
7/1
7/1
7/2
7/3

我正在考虑使用 lambda 函数。但我不确定如何使用它。

order['orderDate'] = train.date.apply(lambda x : x.split).astype('int')

非常感谢您的阅读。

最佳答案

您可以使用:

 train.date.str.extract(r'(\d+/\d+)')

关于python - 如何用Python分割日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57765419/

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