unzalgo #this meme brought to you by gorilla gang 6617 def unzalgo(text): finaltext = "" for letter in text: if ord(letter) < 256: finaltext += letter print(finaltext) print("paste the zalgo'd text and press enter:") unzalgo(input()) unzalgo