Python: Matches a word containing 'z'
Python Regular Expression: Exercise-12 with Solution
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:
Flowchart:
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.
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/re/python-re-exercise-12.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics