Answers for "remove anything after ( in strin python"

0

python remove everything after character

sep = '...'
stripped = text.split(sep, 1)[0]
Posted by: Guest on April-06-2021

Code answers related to "remove anything after ( in strin python"

Python Answers by Framework

Browse Popular Code Answers by Language