本来是想用ansi自己来实现的,但是测试发现Windows端存在不一致的问题,有的Windows不显示,有的只有powershell显示。
因此尝试使用第三方模块
首先要知道的是,具体是否支持是取决于shell,而非terminal。因此Windows上测试cmd和powershell即可,linux应该都是可以用的。
首先是安装coloama
python -m pip install colorama
下面是各shell的执行结果及测试代码
Linux使用的是WSL+Arch+fish
需要特别注意的是,Windows下需要init(wrap=True)
,Linux也可以init,不过没啥用
剩下的基本上看名字就知道咋用了
fish那里绿色发黄是Hyper主题的原因,默认情况下还是绿色的
import colorama colorama.init(wrap=True, autoreset=True) print("normal") print(colorama.Style.BRIGHT + "Bright") print(colorama.Fore.RED + "Red") print(colorama.Back.BLUE + "Blue") print("%10s" % "", end="") for back in colorama.Back.__dict__: print("%10s" % (back if len(back) < 9 else back[:9]), end="") print() for fore in colorama.Fore.__dict__: print("%10s" % (fore if len(fore) < 9 else fore[:9]), end="") for back in colorama.Back.__dict__: print(colorama.Fore.__dict__[fore] + colorama.Back.__dict__[back] + "%10s" % "xxx", end="") print("") colorama.deinit() print(colorama.Fore.RED+"Red") print("Still Red") print(colorama.Fore.RESET+"Reset")