当前分类:python>>正文

轻松制作漂亮的Python文字效果

来源:互联网   更新时间:2023年8月20日  

Python 笔记

一、使用Python库实现文本加粗/斜体/下划线等效果


from termcolor import colored

print(colored('Hello, World!', 'red', attrs=['bold', 'underline']))
print(colored('Hello, World!', 'green', attrs=['bold', 'italic']))

Hello, World!
Hello, World!

二、使用Python绘制ASCII艺术字


import pyfiglet

text = pyfiglet.figlet_format("Hello, World!")
print(text)

 _   _      _ _
| | | | ___| | | ___
| |_| |/ _ \ | |/ _ \
|  _  |  __/ | | (_) |
|_| |_|\___|_|_|\___/

三、使用Python生成漂亮的文本背景


from termcolor import colored

print(colored('Hello, World!', 'white', 'on_red'))
print(colored('Hello, World!', 'white', 'on_green'))

Hello, World!
Hello, World!

结论

本文固定链接:https://6yhj.com/leku-p-5481.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: urllib