[Solved] how to create ascii art in python [closed]


you can try the art package for python

example:

>>> from art import *
>>> Art=text2art("art") # Return ascii text (default font) and default chr_ignore=True 
>>> print(Art)
              _   
  __ _  _ __ | |_ 
 / _` || '__|| __|
| (_| || |   | |_ 
 \__,_||_|    \__|

enter image description here

solved how to create ascii art in python [closed]