In python is there a better way to convert from a US date format to a UK date format?
I am using the below:
df = ['01/31/2014', '02/06/2013']
for a in df:
s = list(a)
d = [s[3],s[4],s[2],s[0],s[1],s[5],s[6],s[7],s[8],s[9]]
f.append("".join(d))
print (f)
['31/01/2014', '06/02/2013']