如何在python中创建ascii艺术

时间:2019-03-27 14:07:33

标签: python

我如何通过python中的数字制作大字母,例如在控制台中编写的metasploit? like this metasploit structure

1 个答案:

答案 0 :(得分:2)

您可以尝试使用art的python包

示例:

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

enter image description here