Really fantasy print in python

Since python has a way to do almost everything that I was wondering, is there any API that will help me print really bizarre text in my log, for example.

# # ####### # # ########## # # # # # # # # # # # # # # ##### #### # # # # # # # # # # # # # # # # # # # # ####### ######## ######## ########## 

I tried pprint and there is nothing in it.

Any tips? Thanks

+4
source share
1 answer

Here is a Python recipe that does just that: Banner .

On some systems, the banner command also exists:

 aix@aix :~$ banner HELLO # # ####### # # ####### # # # # # # # # # # # # # # ####### ##### # # # # # # # # # # # # # # # # # # # # ####### ####### ####### ####### 
+10
source

Source: https://habr.com/ru/post/1395757/


All Articles