I have a column of phone numbers. How can I flip them with regards to the two digits in the middle.
JavaScript
x
5
1
# The original column
2
[["00-07-16"],
3
["23-27-21"],
4
["01-12-16"]]
5
JavaScript
1
5
1
# The reversed column
2
[["16-07-00"],
3
["21-27-23"],
4
["16-12-01"]]
5
Advertisement
Answer
You could use this function to reverse each number :
JavaScript
1
3
1
def rev(num:str):
2
return num[6:8] + num[2:6] + num[0:2]
3