You are viewing a single comment's thread. Return to all comments →
regex_pattern = r"^...\....\....\....$" import re import sys test_string = input() match = re.match(regex_pattern, test_string) is not None print(str(match).lower())
Seems like cookies are disabled on this browser, please enable them to open this website
Matching Anything But a Newline
You are viewing a single comment's thread. Return to all comments →