w3resource

Python: Matches a word containing 'z'


12. Word Containing z

Write a Python program that matches a word containing 'z'.

Sample Solution:

Python Code:

import re
def text_match(text):
        patterns = '\w*z.\w*'
        if re.search(patterns,  text):
                return 'Found a match!'
        else:
                return('Not matched!')

print(text_match("The quick brown fox jumps over the lazy dog."))
print(text_match("Python Exercises."))

Sample Output:

Found a match!                                                                                                
Not matched!

Pictorial Presentation:

Python: Regular Expression - Matches a word containing 'z'.
Python: Regular Expression - Matches a word containing 'z'.

Flowchart:

Flowchart: Regular Expression - Matches a word containing 'z'.

For more Practice: Solve these Related Problems:

  • Write a Python program to match and print words that contain the letter 'z' anywhere in them.
  • Write a Python script to extract all words with 'z' from a sentence and then count the number of occurrences.
  • Write a Python program to filter a list of words, retaining only those that contain the letter 'z'.
  • Write a Python program to identify and highlight words containing 'z' within a paragraph.

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program that matches a word at end of string, with optional punctuation.
Next: Write a Python program that matches a word containing 'z', not start or end of the word.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.