python-mini-project icon indicating copy to clipboard operation
python-mini-project copied to clipboard

Add new project ascii-art

Open Shashikumar-ezhilarasu opened this issue 11 months ago • 1 comments

ASCII Art Generator

    _    ____   ____ ___ ___      _         _   
   / \  / ___| / ___|_ _|_ _|    / \   _ __| |_ 
  / _ \ \___ \| |    | | | |    / _ \ | '__| __|
 / ___ \ ___) | |___ | | | |   / ___ \| |  | |_ 
/_/   \_\____/ \____|___|___| /_/   \_\_|   \__|
                                                
  ____                           _             
 / ___| ___ _ __   ___ _ __ __ _| |_ ___  _ __ 
| |  _ / _ \ '_ \ / _ \ '__/ _` | __/ _ \| '__|
| |_| |  __/ | | |  __/ | | (_| | || (_) | |   
 \____|\___|_| |_|\___|_|  \__,_|\__\___/|_|   

This is a simple Python script that converts user-provided text into ASCII art using the pyfiglet library.

Requirements Python 3.x
pyfiglet library (install it using pip install pyfiglet)
How to Use Run the script:

python script_name.py
 _   _      _ _                            _     _ 
| | | | ___| | | ___   __      _____  _ __| | __| |
| |_| |/ _ \ | |/ _ \  \ \ /\ / / _ \| '__| |/ _` |
|  _  |  __/ | | (_) |  \ V  V / (_) | |  | | (_| |
|_| |_|\___|_|_|\___/    \_/\_/ \___/|_|  |_|\__,_|

Enter the text when prompted. See the ASCII art output in the terminal.

Shashikumar-ezhilarasu avatar Dec 04 '24 17:12 Shashikumar-ezhilarasu