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

python 錯誤 ‘>‘ not supported between instances of ‘datetime.time‘ and ‘datetime.datetime‘

編輯:Python

參考這個解決:https://www.5axxw.com/questions/content/gzoq3q

具體代碼

sqlLongSss="SELECT * FROM table1 ;"
df=pd.read_sql(sqlLongSss,con=con)
tt1="0713"#一陣日期亂倒
tt2=datetime.datetime.strptime(tt1, '%H%M').strftime('%H:%M:%S')#P轉time F轉字符串
tt3=datetime.datetime.strptime(tt2,'%H:%M:%S')
tt4=tt3+datetime.timedelta(minutes=10)
tt5=tt4.strftime('%H:%M:%S')
threshold = pd.Timedelta(tt5)
print(threshold)
df['LastTimeHHMM']=pd.to_datetime(df['LastTime']).dt.time
df['Total Time'] = pd.to_timedelta(pd.to_datetime(df['LastupateTimeHHMM'].astype(str)).dt.strftime('%H:%M:%S'))
df_styled = df[ df['Total Time'].apply(lambda x:x > threshold) ]


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