I have a column of phone numbers, some of the column values have ';' at the start:
Phone
-------
890734687; 098766576565
890734687
;890734687
234873576; 987982346
;9088327427; 897234632
What I need to end up with is:
Phone
-------
890734687; 098766576565
890734687
890734687
234873576; 987982346
9088327427; 897234632
Can I use a for loop?
for num in df['Phone']
if num[0] == ';'
# what next?