match example python
Example: python pattern matching example
import re
pattern = re.compile('[a-zA-Z ]+') # a...z A...Z and space allowed
message = "Weather is nice"
if pattern.match(message).group() == message:
print("match")
else:
print("no match")