Art包用于在终端上打印装饰艺术并保存在文件中,一个单词可以用“|”表示。 “并且可以保存在文件中
安装
该模块不是 Python 内置的。要安装此类型,请在终端中输入以下命令。
pip install art
函数:
- 在终端和 aprint() 函数上打印普通和随机艺术
- 以 | 的形式打印一个单词和 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")
输出:
相关用法
- Python ArcGIS UX.featured_content用法及代码示例
- Python ArcGIS PortalLicense.update用法及代码示例
- Python arcgis.mapping.SceneLayerManager.delete_tiles用法及代码示例
- Python arcgis.mapping.SceneLayerManager.edit_tile_service用法及代码示例
- Python arcgis.mapping.SceneLayerManager.import_tiles用法及代码示例
- Python arcgis.mapping.SceneLayerManager.update_tiles用法及代码示例
- Python arcgis.mapping.MapImageLayerManager.import_tiles用法及代码示例
- Python arcgis.apps.hub.Initiative.delete用法及代码示例
- Python arcgis.apps.hub.Initiative.update用法及代码示例
- Python arcgis.apps.hub.Indicator.delete用法及代码示例
- Python arcgis.apps.hub.Indicator.update用法及代码示例
- Python arcgis.apps.hub.InitiativeManager.add用法及代码示例
- Python arcgis.apps.hub.InitiativeManager.get用法及代码示例
- Python arcgis.apps.hub.IndicatorManager.add用法及代码示例
- Python arcgis.learn.export_training_data用法及代码示例
- Python arcgis.learn.detect_objects用法及代码示例
- Python arcgis.learn.classify_objects用法及代码示例
- Python arcgis.learn.classify_pixels用法及代码示例
- Python arcgis.learn.list_models用法及代码示例
- Python arcgis.learn.train_model用法及代码示例
- Python ArcGIS GIS.map用法及代码示例
- Python ArcGIS GIS.update_properties用法及代码示例
- Python ArcGIS GIS用法及代码示例
- Python ArcGIS Item.add_comment用法及代码示例
- Python ArcGIS Item.add_relationship用法及代码示例
注:本文由纯净天空筛选整理自akshaypawar4大神的英文原创作品 Art module in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。