Pandas Split Colonne Largeur fixe

df[['CCY1','CCY2']] = df.CCYPair.str.extract('(.{3})(.*)')
Ruixuan Wang