Posts by HD13sel • 1 point
2 posts
-
0
votes2
answers46
viewsA: I have a date/time start and end frame, how do I separate for dates / start time / end time on pandas?
I did it that way: datas_df = relatorio[['INICIO','FINAL']] datas = [] horas_i = [] horas_f = [] for dhi in datas_df['INICIO']: data, hora_inicio = dhi.split(' ') datas.append(data)…
-
0
votes2
answers46
viewsQ: I have a date/time start and end frame, how do I separate for dates / start time / end time on pandas?
In the database I have a report containing: INICIO FINAL 20/07/2021 09:17 20/07/2021 09:25 20/07/2021 09:17 20/07/2021 09:25 20/07/2021 09:17 20/07/2021 09:25 20/07/2021 09:28 20/07/2021 09:33 I…