From b7d90b2da38c3851d38d26dc893342ff73884d5a Mon Sep 17 00:00:00 2001 From: mansour134 Date: Tue, 3 Mar 2026 06:26:51 +0300 Subject: [PATCH] solution + bonus --- bonus.py | 17 +++++++++++++++++ main.py | 7 +++++++ 2 files changed, 24 insertions(+) create mode 100644 bonus.py create mode 100644 main.py 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)