I have a dataframe
         Description
0        Hi there
1        He is my family.
2        He studies in the United States.
I want to split this data frame in the case: If the description is longer than 10 characters, the rest of the characters should be in the next line.
Expected Output:
             Description
0            Hi there
1            He is my f
2            amily.
3            He studies
4            in the Uni
5            ted States
6            .