diff --git a/text_art.py b/text_art.py new file mode 100644 index 0000000..4f85886 --- /dev/null +++ b/text_art.py @@ -0,0 +1,30 @@ +from art import * +from colorama import * + + +welcome = text2art("Welcome ", font="block") + +print(Fore.WHITE + welcome) + + +believe = text2art("BELIEVE AND ACHEIVE", font="block") +hello = text2art("HELLO", font="sub-zero") + +print(Fore.CYAN + believe) +print(Fore.YELLOW + hello) + + +name = text2art("Norah", font="slant") +age = text2art("25", font="random") +face = text2art(":)", font="mini") + + + +print(Fore.MAGENTA + name) +print(Fore.GREEN + age) +print(Fore.MAGENTA + face) + + + + +