I am having a csv file which is having a lot of entries (rows). The first column contains dates in the format mm/dd/yyyy
, the second one contains time in the format hh:min:sec
.
All I want is that I will provide the start date, start time, end date, end time and all the records (rows) will be listed between these parameters from the csv file...
I tried using pandas but didnt get any solution.
The entries of csv files are as follows:
Date Time Mode Dir Reserved Speed Enf Speed 1/1/2020 0:00:10 N R 170 103 70 1/1/2020 0:00:20 N R 170 70 70 1/1/2020 0:00:30 N R 170 105 70 1/1/2020 0:00:40 N R 170 115 70 1/1/2020 0:00:50 N R 170 81 70 1/1/2020 0:10:00 N R 170 127 70 1/1/2020 0:10:10 N R 170 74 70 1/1/2020 0:10:20 N R 170 108 70
Please help me out in how to get data between these date and times..
Thank you.