Answers for "python remove all characters from string"

15

how to remove all characters from a string in python

s = 'abc12321cba'

print(s.replace('a', ''))
Posted by: Guest on August-10-2020
2

How to remove all characters after character in python?

Use str. split() to remove everything after a character in a string
a_string = "ab-cd"
split_string = a_string. split("-", 1) Split into "ab" and "cd"
substring = split_string[0]
print(substring)
Posted by: Guest on August-31-2021
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

remove random character from a dictionary python

#the pop.item() method removes the last inserted item in Dictionary
#In python versions lower than 3.7 will remove a RANDOM ITEM

thisdict = {
  "brand": "Ford",
  "model": "Mustang",
  "year": 1964
}
thisdict.popitem()
print(thisdict)
Posted by: Guest on November-11-2020
1

drop all characters after a character in python

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

How to remove all characters after a specific character in python?

text = input()
sep = '...'
stripped = text.split(sep, 1)[0]
print(stripped)
Posted by: Guest on August-31-2021

Code answers related to "python remove all characters from string"

Python Answers by Framework

Browse Popular Code Answers by Language