

> Art = text2art ( "art" ) # Return ASCII text (default font) and default chr_ignore=True > print ( Art ) _ _ _ _ _ | |_ / _` || '_|| _| | (_| || | | |_ \_,_||_| \_| > Art = text2art ( "art", font = 'block', chr_ignore = True ) # Return ASCII text with block font > print ( Art ). 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 Note3 : Use ASCII_ARTS to access all ASCII arts name list (new in Version 5.7).Note2 : Use NON_ASCII_ARTS to access all Non-ASCII arts name list (new in Version 4.6).

