Hi,
I need to convert a string to another which has removed anything before the second word
Example from this,
string = "xyz anything else"
string2 = "xyz anything else"
string3 = "xyz anything else"
to this,
string = "anything else"
string2 = "anything else"
string3 = "anything else"
The way I've done it doesnt please me at all, it isnt pythonic and it's too large. What it would be the best way to do it in Python?