How do I standardize the Datetime format to be %Y/%m/%d %H:%M:%S?
My Data
time
1 2020/07/20 23:20:00
2 2020/07/21 3:20
Desired Output
time
1 2020/07/20 23:20:00
2 2020/07/21 03:20:00
How do I standardize the Datetime format to be %Y/%m/%d %H:%M:%S?
My Data
time
1 2020/07/20 23:20:00
2 2020/07/21 3:20
Desired Output
time
1 2020/07/20 23:20:00
2 2020/07/21 03:20:00