Answers for "remove multiple items from string python"

2

python remove multiple characters from string

import re
print(re.sub("e|l", "", "Hello people"))
"Ho pop"
Posted by: Guest on December-01-2020
0

remove multiple strings from list python

# Python program to remove multiple
# elements from a list
 
# creating a list
list1 = [11, 5, 17, 18, 23, 50]
 
# Iterate each element in list
# and add them in variable total
for ele in list1:
    if ele % 2 == 0:
        list1.remove(ele)
 
# printing modified list
print("New list after removing all even numbers: ", list1)
Posted by: Guest on January-14-2022

Code answers related to "remove multiple items from string python"

Python Answers by Framework

Browse Popular Code Answers by Language