I have dict with below data.
{'Night': {'time': '22:00:00', 'setPoint': 140}, 'Day': {'time': '08:00:00', 'setPoint': 139}, 'Morning': {'time': '06:00:00', 'setPoint': 110}, 'Evening': {'time': '18:00:00', 'setPoint': 130}}
I want a list which contains only time Sample output:
['22:00:00','08:00:00','06:00:00','18:00:00']