How to add a custom north arrow to ArcMap?
How to do column editing in vim?
https://stackoverflow.com/a/6972206/4539590
To edit a column, follow these steps:
parsing-non-zero-padded-timestamps-in-python
datetime.strptime(): creates a datetime object from the given string.
from datetime import datetime
dt_string = "12/11/2018 09:15:32"
dt_object1 = datetime.strptime(dt_string, "%d/%m/%Y %H:%M:%S")
dt_object2 = datetime.strptime(dt_string, "%m/%d/%Y %H:%M:%S")