I have a pandas dataframe which has datetime as its index (shown below)
['2018-02-13 11:55:00', '2018-02-13 12:00:00',
'2018-02-13 12:05:00', '2018-02-13 12:10:00',
'2018-02-13 12:15:00', '2018-02-13 12:20:00',
'2018-02-13 12:25:00', '2018-02-13 12:30:00',
'2018-02-13 12:35:00', '2018-02-13 12:40:00',
...
'2018-02-19 04:40:00', '2018-02-19 04:45:00',
'2018-02-19 04:50:00', '2018-02-19 05:05:00',
'2018-02-19 05:10:00', '2018-02-19 05:15:00',
'2018-02-19 05:20:00', '2018-02-19 05:25:00',
'2018-02-19 05:30:00', '2018-02-19 05:40:00'])
I would like to filter all the value which has time 12:00:00 for example, therefore I am looking for a return value of
['2018-02-13 12:00:00','2018-02-14 12:00:00','2018-02-15 12:00:00','2018-02-16 12:00:00','2018-02-17 12:00:00', '2018-02-18 12:00:00']
How can I perform such indexing please?