So I'm trying to use Zalgo Text in Python to add an element of spookiness to my text-based console game. However, everytime I do try to add it, I would get errors. Now when I try to recreate said errors, nothing happens and my console just doesn't update. Does anyone know why this would happen, and how i can print Zalgo text? I tried pyzalgo but the documentation doesn't realy show you how to use it. Any help would be appreciated!
Here is my code:
import sys
import os
import time
import pyzalgo
os.system("mode con: cols=45 lines=80")
def main():
print("***************************************")
print("T̶̝̮̯̩̤̮̟̯̟͍͈͔̣̣̫̋̏͌̌̆́̌ḧ̷̝̼̲̿͗̓̈̚͘ę̴̢̢̱͉̫̙̗̙͎̘̺͇̤̺̔̇̋͗̈́̌͋̿̈́͝ ̴̢̛̳̗͍̝̲̗͓̤̬͐̍̽̋̅̿̀w̷͍̜̪̫̦͚͚̬̜̹̭͖͌ͅr̶͔̱͓̦̝͕̘̼͙̫̘͇̓͐͌͛̉̈́̏̈͂̍ą̵̞̣̣͓̳̲̮͉̭̗͎̱̮̹̄̀̀́͗͒̄̽͠t̷̡̛̞̯̘̟͉̻̜̖́̀̃̅͆͐̎̎̄͘h̴̨̫̱̺̫͕̹̳̲̊̆̋̌͛͗͜͝ͅ ̶̟͚̖̥͔̟̖̭̦͕̘̗̤̀̄͌̈́̓̕͘ͅo̶̙̟̼̓f̷̛̣̏́͌͌̏̊͗̀̇͠͠͝ ̷̛̪͕̖̙̗͉͍̪̪̳͊̃̈̕͝Z̷̟̳͉̱͓̫̦̱̥̃̃́́̆̑͠ą̸̮̲͍̯͉͉̍͜͜ͅl̶̡̯̞̝̥̖̤͈̬̫̭͚̝͇͖̉̅́͌̋̍͘̚͝g̸͎͍̺̣̱̬̞̣͌͝o̵̩̖̥̅͂̔̈́͆̑͋͌͐͝")
print("1. Start")
print("2. Load")
print("3. Exit")
print("***************************************")
main()