w3resource

Python: Strip a set of characters from a string

Python String: Exercise-41 with Solution

Write a Python program to strip a set of characters from a string.

Python String Exercises: Strip a set of characters from a string

Sample Solution:

Python Code:

# Define a function 'strip_chars' that takes a string 'str' and a string 'chars' as input.
# The function returns a new string containing characters from 'str' that are not in 'chars'.
def strip_chars(str, chars):
    return "".join(c for c in str if c not in chars)

# Print an empty line for spacing.
print()

# Print the original string.
print("Original String: ")
print("The quick brown fox jumps over the lazy dog.")

# Print a message indicating the characters to be stripped from the string.
print("After stripping a, e, i, o, u")

# Call the 'strip_chars' function with the input string and the characters to strip,
# and then print the result.
print(strip_chars("The quick brown fox jumps over the lazy dog.", "aeiou"))

# Print an empty line for spacing.
print() 

Sample Output:

Original String:                                                                                              
The quick brown fox jumps over the lazy dog.                                                                  
After stripping a,e,i,o,u                                                                                     
Th qck brwn fx jmps vr th lzy dg.                             

Flowchart:

Flowchart: Strip a set of characters from a string

Python Code Editor:

Previous: Write a Python program to reverse words in a string.
Next: Write apython program to count repeated characters in a string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/string/python-data-type-string-exercise-41.php