Answers for "loop in python that removes characters"

8

delete certain characters from a string python

for char in line:
    if char in " ?.!/;:":
        line.replace(char,'')
Posted by: Guest on April-08-2020
1

drop all characters after a character in python

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

Code answers related to "loop in python that removes characters"

Python Answers by Framework

Browse Popular Code Answers by Language