Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -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/
14 changes: 14 additions & 0 deletions lab.py
Original file line number Diff line number Diff line change
@@ -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)