Can someone help me how you would go around this and use the dates and the time to make visualisation for this? (for example time-brackets (9-12, 12-15, 15-18 and so on). Price against time. But since the format is kinda difficult I can't get the solution.
I tried this but it doesn't work (probably; because its a vector)
from datetime import datetime
date_time_obj = datetime.strptime(date_time_str, '%d/%m/%y %H:%M:%S')
print "The type of the date is now", type(date_time_obj)
print "The date is", date_time_obj