From e24587429cba43fae863ebdaf7b98d5e211a1725 Mon Sep 17 00:00:00 2001 From: Atheer Alshahrani Date: Mon, 2 Mar 2026 13:30:32 +0300 Subject: [PATCH 1/2] main.py --- LAB_PIP_VENV/main.Py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 LAB_PIP_VENV/main.Py diff --git a/LAB_PIP_VENV/main.Py b/LAB_PIP_VENV/main.Py new file mode 100644 index 0000000..ec32e26 --- /dev/null +++ b/LAB_PIP_VENV/main.Py @@ -0,0 +1,7 @@ +from art import text2art +from colorama import init, Fore + +init() + +print(Fore.CYAN + text2art("BELIEVE AND ACHEIVE", font="block")) +print(Fore.YELLOW + text2art("HELLO", font="sub-zero")) \ No newline at end of file From b4af6af845a2d789cb88a09ad2ab05a5452c0bea Mon Sep 17 00:00:00 2001 From: Atheer Alshahrani Date: Mon, 2 Mar 2026 14:24:45 +0300 Subject: [PATCH 2/2] main.py --- LAB_PIP_VENV/main.Py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/LAB_PIP_VENV/main.Py b/LAB_PIP_VENV/main.Py index ec32e26..ea1c741 100644 --- a/LAB_PIP_VENV/main.Py +++ b/LAB_PIP_VENV/main.Py @@ -1,7 +1,17 @@ from art import text2art -from colorama import init, Fore +from colorama import init, Fore, Style +# تفعيل اللون init() +# المطلوب الأساسي print(Fore.CYAN + text2art("BELIEVE AND ACHEIVE", font="block")) -print(Fore.YELLOW + text2art("HELLO", font="sub-zero")) \ No newline at end of file +print(Fore.YELLOW + text2art("HELLO", font="sub-zero")) + +# BONUS phrases +print(Fore.GREEN + text2art("STAY STRONG", font="block")) +print(Fore.MAGENTA + text2art("WORK HARD", font="sub-zero")) +print(Fore.BLUE + text2art("DREAM BIG", font="block")) +print(Fore.RED + text2art("NEVER GIVE UP", font="sub-zero")) + +print(Style.RESET_ALL) \ No newline at end of file