diff --git a/bonus.py b/bonus.py new file mode 100644 index 0000000..bc77195 --- /dev/null +++ b/bonus.py @@ -0,0 +1,17 @@ +from art import * +from colorama import Fore, Back, Style + + +dancing_fonts = text2art("dance",font='dancingfont',chr_ignore=True) +decore = decor("rand",both=True) +aprint("dancing people") +#print(Fore.RED + 'some red text') + + + +print(decore) +print(Fore.LIGHTMAGENTA_EX + dancing_fonts + Style.RESET_ALL) +print(decore) +aprint("dancing people") + + diff --git a/main.py b/main.py new file mode 100644 index 0000000..382641c --- /dev/null +++ b/main.py @@ -0,0 +1,7 @@ +from art import * + +block_test = text2art("BELIEVE AND ACHEIVE",font='block',chr_ignore=True) +sub_zero_test = text2art("HELLO",font='sub-zero',chr_ignore=True) + +print(block_test) +print(sub_zero_test)