I can't figure out a way to .strip(&quot;string&quot;)<br><br>Example might look like this:<br><br>&gt;&gt;&gt; myStr = &quot;I want to strip my words.&quot;<br>&gt;&gt;&gt; print myStr.strip(&quot;my&quot;)<br>&gt;&gt;&gt; 'I want to strip words.'
<br><br>Thanks.<br><br>