I have a list like this :
list = [
'20211231_2300',
'20211231_2305',
'20211231_2310',
'20211231_2315',
'20211231_2320',
'20211231_2325'
]
With Python, I want to change each values of the list by "2021/12/31_23:05"
to obtain this result:
[
'2021/12/31_23:00',
'2021/12/31_23:05',
'2021/12/31_23:10',
'2021/12/31_23:15',
'2021/12/31_23:20',
'2021/12/31_23:25'
]
How can I do that ? Thank you !