I have the list like this where items are separated by ":".
x=['john:42:engineer',
'michael:29:doctor']
Is there a way to change the data frame like below by using columns Name, Age, and Occupation?
Name Age Occupation
0 john 42 engineer
1 michael 29 doctor