PY
py
1
2
3
4
5
6
7
8
9
10
11
12
# Created by Clueless Coder
import string
import re
message = input()
symbols = string.punctuation
if re.search(message, symbols):
print("match")
if len(set(message)&set(symbols))>0:
print("Omamatch")
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run