gpt4 book ai didi

python - 在 python 终端中打印颜色

转载 作者:IT老高 更新时间:2023-10-28 20:36:43 25 4
gpt4 key购买 nike

我想制作一个在 python 终端中打印颜色的程序,但我不知道怎么做。我听说您可以使用某些转义序列来打印彩色文本,但我不确定这一点。如何使用 python 终端打印特定颜色的字符串?

旁注:我运行的是 Linux 版本。

最佳答案

试试 termcolor模块。

from termcolor import colored

print colored('hello', 'red'), colored('world', 'green')

Print in terminal with colors using Python?

另外,您可以使用 ANSI 代码:

class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'

def disable(self):
self.HEADER = ''
self.OKBLUE = ''
self.OKGREEN = ''
self.WARNING = ''
self.FAIL = ''
self.ENDC = ''

print(bcolors.WARNING + "Warning" + bcolors.ENDC)

关于python - 在 python 终端中打印颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22886353/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com