I have a dataframe which has single column and has 5 elements & looks like this
`First
a;b;c;d;e`
I want to create 2 columns from this, in which 1st column contains only "a" and 2nd column should have "b;c;d;e"
`First Second
a b;c;d;e`
I tried using functions by seperating out element, but got attribute error.