From aeb93343bf2361ee44787e2444a06d9ab590d958 Mon Sep 17 00:00:00 2001 From: Mohsen Date: Mon, 2 Mar 2026 13:39:53 +0300 Subject: [PATCH 1/2] Solved the lab --- lab.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lab.py diff --git a/lab.py b/lab.py new file mode 100644 index 0000000..b42a624 --- /dev/null +++ b/lab.py @@ -0,0 +1,6 @@ +from art import text2art + +art1 = text2art("BELIEVE AND ACHIEVE",font='block') +print(art1) +art2 = text2art("HELLO",font='sub-zero') +print(art2) \ No newline at end of file From eb96d898971a486e894b1e74090075109c68b242 Mon Sep 17 00:00:00 2001 From: Mohsen Date: Mon, 2 Mar 2026 13:54:54 +0300 Subject: [PATCH 2/2] Solved the Bonus --- Bonus.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Bonus.py diff --git a/Bonus.py b/Bonus.py new file mode 100644 index 0000000..69a79c9 --- /dev/null +++ b/Bonus.py @@ -0,0 +1,8 @@ +from art import text2art +from colorama import Fore, Back, Style +# Bonus + +art1 = text2art("Mohsen alfawaz",font='rnd-xlarge') +print(Fore.BLUE + art1) +art2 = text2art("TEST",font='rnd-large') +print(Back.CYAN + art2)