diff --git a/README.md b/README.md index 133c20c..3377e19 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@ -# LAB_PIP_VENV - +pyth# LAB_PIP_VENV ## using what you've learned , create a new project to print Text Art in the terminal : -- Create a virtual environment & activate it -- Use ART package to print Text Art. -- Print the phrase "BELIEVE AND ACHEIVE" designed with font `block`. -- print the phrase "HELLO" designed with font `sub-zero`. +- Create a virtual environment & activate it...Done! +- Use ART package to print Text Art...Done! +- Print the phrase "BELIEVE AND ACHEIVE" designed with font `block`... Done! +- print the phrase "HELLO" designed with font `sub-zero`...Done! ## Bonus + - Come up with different phrases with different art and decoration - Use colorama to color the text in the terminal. - ### checkout the package on pip + https://pypi.org/project/art/ diff --git a/lab.py b/lab.py new file mode 100644 index 0000000..577ea59 --- /dev/null +++ b/lab.py @@ -0,0 +1,14 @@ +from art import * +from colorama import Fore, Back, Style + +text1 = text2art ("BELIVE AND ACHIVE" , font = "block") +print (Fore.GREEN + text1) + +text2 = text2art ("HELLO", font = "sub-zero") +print (Fore.BLUE + text2) + +text3 = text2art ("PYTHON", font = "doom") +print(Fore.CYAN + text3) + +text4 = text2art ("Lab", font = "random" ) +print (Back.WHITE + text4)