I want to split the entry (always a string containing 6 letters) of a column 'Compared Image Type' of a pandas dataframe into two new columns of which one contains the first three letters, the other contains the last three letters of the original column.
Name BaseImage Type Compared Image Type
2 oldNeg semNeg
2 oldNeu perNeu
2 oldNeu semNeu
2 oldNeu newNeu
2 oldNeg perNeg
So far I've only found out how to split a column after a certain character (e.g. after a ",") and would be thankful for any help.