Skip to content

Instantly share code, notes, and snippets.

View Enorovan's full-sized avatar
💻
Hacking to the Gate

Enorovan Enorovan

💻
Hacking to the Gate
View GitHub Profile
@Enorovan
Enorovan / danceconverter.py
Created May 4, 2022 16:30 — forked from futotorofu/danceconverter.py
Quickly convert sentence into those commonly found dancing Discord emotes
import sys
import pyperclip
def convert_string(src_sentence):
result = ""
for c in src_sentence:
if c != ' ':
result += ":dance" + c.upper() + ":"
else: