Created
June 26, 2020 22:29
-
-
Save charity1475/f5ff769e92cf2afaf65baa9e5a56411f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment