Last active
November 9, 2019 09:47
-
-
Save yue4u/28192943b5b4eb13b70914839f5a9d9d 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
emoji = { | |
"を": "̀", | |
"絵": "(", | |
"換": "•", | |
"変": "ㅂ", | |
"字": "•", | |
"る": ")", | |
"モ": "✧", | |
"文": "๑", | |
"デ": "و", | |
"す": "́" | |
} | |
n = input("input the key:") | |
converted_emoji = [emoji.get(char, "Invalid") for char in n] | |
print("".join(converted_emoji)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment