These are two columns(A & B) in a python data frame
column df['A']
0 2021-05-19 11:21:29.463
1 2021-05-19 11:21:39.127
column df['B']
0 2021-05-19 11:19:27.217
1 2021-05-19 11:19:40.000
by subtracting these two columns df['A'] - df['B'] I need to get minutes and seconds
02:02
01:59
or at least below format
00:02:02
00:01:59