Skip to content

Instantly share code, notes, and snippets.

View charity1475's full-sized avatar
:electron:

Charity charity1475

:electron:
View GitHub Profile
import re
pattern = re.compile(r'.*$py')
message = input("coding in ?")
answer = re.search(pattern, message)
if answer is None:
print("You have got a non Pythonic mind")
else:
print("You have the Python signature")