mylist = ['Arthur Morgan Game Name: Red Dead Redemption2',
'Zealda',
'Geralt Game Name:Witcher3','Uncharted4']
I have a list of strings above and I want to split by "Game Name: " first and only keep the text after the separator. I tried [w.split('Game Name: ') for w in mylist]
What's the next step?
Expected results:
['Red Dead Redemption2','Zealda','Witcher3','Uncharted4']
Thank you!