Skip to content

Instantly share code, notes, and snippets.

@Poxios
Created April 21, 2021 14:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Poxios/97d43c03622a7b37e5fae5029603da17 to your computer and use it in GitHub Desktop.
Save Poxios/97d43c03622a7b37e5fae5029603da17 to your computer and use it in GitHub Desktop.
Generate discord emoji
string = input('')
for i in string:
if i == ' ':
print(' ', end=' ')
else:
print(":regional_indicator_" + i + ":", end=' ')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment