在Python中,可以通過使用ANSI轉義碼來輸出彩色文本。以下是一些常用的ANSI轉義碼:
示例代碼如下:
print("\033[91mThis is red text\033[0m")
print("\033[92mThis is green text\033[0m")
print("\033[93mThis is yellow text\033[0m")
print("\033[94mThis is blue text\033[0m")
print("\033[95mThis is purple text\033[0m")
print("\033[96mThis is cyan text\033[0m")
在上面的示例中,\033[0m用于重置顏色,使后續文本恢復默認顏色。可以根據需要在文本中插入不同的顏色代碼來輸出不同顏色的文本。