當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Art用法及代碼示例


Art包用於在終端上打印裝飾藝術並保存在文件中,一個單詞可以用“|”表示。 “並且可以保存在文件中

安裝

該模塊不是 Python 內置的。要安裝此類型,請在終端中輸入以下命令。

 pip install art 

函數:

  1. 在終端和 aprint() 函數上打印普通和隨機藝術
  2. 以 | 的形式打印一個單詞和 tprint() 函數也將其保存在文本/pdf 文件中

在終端上打印藝術作品:

用法:art ( name of art, number is integer denoting number of arts in string )

Python3


# import module 
from art import *
  
# return multiple art as str 
art__0=art("woman",number=10) 
  
print(art__0) 

輸出:

隨機生成藝術:

Python3


from art import *
  
print(art("random"))

輸出:

使用aprint()函數

在這裏,您可以直接打印藝術品,就像打印東西的打印函數一樣

Python3


from art import *
  
  
print("Buttterfly by art :  ",end=" ") 
  
aprint("butterfly") 
print()

輸出:

現在讓我們邁向Python文本轉藝術的能力

Python3


# import module 
from art import *
  
# Return ASCII text with block font 
# If font=None then there is no block 
Art = text2art("GFG", font='block', chr_ignore=True) 
  
print(Art) 

輸出:

tprint() 函數與 print() 函數相同,它將文本打印為 ASCII 格式

Python3


# import module 
from art import *
  
# random large text to art representation  
# This art will be random every time 
tprint("GFG","rnd-xlarge") 

輸出:

我們也可以使用tsave()函數將其保存到txt文件中。

用法:tsave(“STRING”, OUTPUT FILE NAME OR PATH)

Python3


# import module 
from art import *
  
Filename = tsave( 
    "GEEKSFORGEEKS", filename="Output_in_txt_file_using_tsave().txt") 

輸出:



相關用法


注:本文由純淨天空篩選整理自akshaypawar4大神的英文原創作品 Art module in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。