📜  打印彩色文本python代码示例

📅  最后修改于: 2022-03-11 14:45:51.034000             🧑  作者: Mango

代码示例6
from colorama import init
from colorama import Fore
init()
print(Fore.BLUE + 'Hello')
print(Fore.RED + 'Hello')
print(Fore.YELLOW + 'Hello')
print(Fore.GREEN + 'Hello')
print(Fore.WHITE + 'Hello')

#test in vscode
#code by fawlid