I'm new in python and I'd like to separate datas in one column which includes film name with release year to multiple columns, so I found split function.
Data is organized as Title (Year).
What I tried in python was:
movies['title'].str.split('(', 1, expand = True)
Exception happened for those cases below:
City of Lost Children, The (Cité des enfants perdus, La) (1999)
City of Lost Children, The. Cité des enfants perdus, La) (1999)
What I had expected was only 1999) goes to the second column.
I need your help!