共计 542 个字符,预计需要花费 2 分钟才能阅读完成。
可以使用 ANSI 转义码来在终端中着色输出文字。以下是使用 ANSI 转义码在 Python 中实现文字着色的示例代码:
# ANSI 转义码颜色代码
class colors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
# 输出带颜色的文字
print(colors.OKGREEN + "This text is green." + colors.ENDC)
print(colors.WARNING + "This text is yellow." + colors.ENDC)
print(colors.FAIL + "This text is red." + colors.ENDC)
在上面的示例中,colors
类定义了不同颜色的 ANSI 转义码。你可以使用 colors.OKGREEN
、colors.WARNING
、colors.FAIL
等颜色代码来给输出的文字着色。记得在需要恢复默认颜色之前使用 colors.ENDC
来结束颜色设置。
丸趣 TV 网 – 提供最优质的资源集合!
正文完