diff --git a/bonus.py b/bonus.py new file mode 100644 index 0000000..d61b066 --- /dev/null +++ b/bonus.py @@ -0,0 +1,8 @@ +from art import text2art +from colorama import Fore, Back + +art1 = text2art("I am a Superman", "rand") +print(Fore.RED +art1) +art2 = text2art("I am a Batman") +print(Back.GREEN + art2) + diff --git a/print_text_art b/print_text_art new file mode 100644 index 0000000..d8bbd65 --- /dev/null +++ b/print_text_art @@ -0,0 +1,6 @@ +from art import text2art + +art1 = text2art("BELIEVE AND ACHEIVE", font = "rnd-xlarge") +print(art1) +art2 = text2art("HELLO", font = "sub-zero") +print(art2) \ No newline at end of file