程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python processing time record

編輯:Python

1. The data content

The corresponding data of this year is displayed as 06.14, The data of last year and the previous year show that 2021.12.27

2. Code processing

month=['01','02','03','04','05','06','07','08','09','10','11','12']
date_pre=[]
for i in df['date']:
if i.split('.')[0] in month:
i='2022.'+i
i=i.replace('.','-')
# print(i) #str 2022-06-12
i=datetime.date(*map(int,i.split('-')))
date_pre.append(i)
else:
i=i.replace('.','-')
i=datetime.date(*map(int,i.split('-')))
date_pre.append(i)
df['date_pre']=pd.DataFrame(data=date_pre)

3. Processing results

 Form like :
2019-03-14 <class 'datetime.date'>

4. Reference link

python Change string type to date type _Python Learners' blogs -CSDN Blog _python String to date format


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved