using Python 3.6.1
time_vector = ['06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '00', '01', '02', '03', '04', '05', '06']
doublezeroes = "00"
time=map(str(time_vector), doublezeroes)
print(time)
I get map object at 0x7ff64a3580f0 with the <>
I need
time = ['0600', '0700', '0800', '0900', '1000', '1100', '1200', '1300', '1400', '1500', '1600', '1700', '1800', '1900', '2000', '2100', '2200', '2300', '0000', '0100', '0200', '0300', '0400', '0500', '0600']
I am sure there might be an easier like append or insert just not sure how to get there. Thanks