I have the following string in python:
message = "2015-08-26T19:30:00+0200"
And I want to retrieve the time from it so I used:
import pandas as pd
import datetime
date=pd.to_datetime(message)
m=datetime.time(date)
The output is
17:30:00
How can I get 19:30
regardless of the DST