from colorama import Fore, Back, Style, init
init()
print(Fore.RED + 'some red text')
print(Back.GREEN + 'and with a green background')
print(Style.DIM + 'and in dim text')
print(Style.RESET_ALL)
print('back to normal now')
以上代码win8 cmd测试可行。init()可以换成init(autoreset=True) 就不用RESET_ALL了。
【 在 weehu 的大作中提到: 】
: 感谢回复,看完后又有个小问题:
: win11环境的机器,是否可以直接用平台通用方法,用colorama这个库?
: 顺求关于这个库的说明链接。
: ...................
--
FROM 111.196.240.*