Advertisement
Guest User

Untitled

a guest
Apr 20th, 2025
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | Source Code | 0 0
  1. import emoji
  2.  
  3. def main():
  4.     _input = input()
  5.     output = emoji.emojize(_input, language="alias", variant="emoji_type")
  6.     print(output, end="")
  7.  
  8. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement