I\'d like to remove all characters before a designated character or set of characters (for example):
intro = \"<>I\'m Tom.\"
Now I\'d
intro="These are unwanted characters <> I'm Tom" indx = intro.find("I")#position of 'I' intro = intro[indx:] print(intro)