Skip to content

Instantly share code, notes, and snippets.

@yue4u
Last active November 9, 2019 09:47
Show Gist options
  • Save yue4u/28192943b5b4eb13b70914839f5a9d9d to your computer and use it in GitHub Desktop.
Save yue4u/28192943b5b4eb13b70914839f5a9d9d to your computer and use it in GitHub Desktop.
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