

This function return ASCII text as str in normal mode and raise artError in exception. ⚠️ From Version 5.3 \n is used as the default line separator instead of \r\n (Use sep parameter if needed) 1.

⚠️ From Version 3.3 Non-ASCII fonts added (These fonts are not compatible with some environments) ⚠️ Some fonts don't support all characters

> from art import * > art_1 = art ( "coffee" ) # return art as str in normal mode > print ( art_1 ) c > art_2 = art ( "woman", number = 2 ) # return multiple art as str > print ( art_2 ) ▓⚗_⚗▓ ▓⚗_⚗▓ > art ( "random" ) # random 1-line art mode '(っ◕‿◕)っ ' > art ( "rand" ) # random 1-line art mode 't(-_-t) ' > art ( 22, number = 1 ) # raise artError Traceback (most recent call last). This function return 1-line art as str in normal mode and raise artError in exception. ⚠️ ART 4.6 is the last version to support Bipartite art 1. ⚠️ Some environments don't support all 1-Line arts
