Python3 x 更改控制台字型樣式

2021-08-04 09:10:13 字數 459 閱讀 5244

最近在python3.x列印錯誤資訊想把字型調成紅色,發現之前在2.x能用的**無法在python3.x上應用,網上搜尋了一下也沒有相關的解決辦法,最後還是在google上找到了解決方案。

colorama是用於以不同顏色列印到終端/控制台的完美跨平台模組

安裝方法: pip install colorama

import colorama

from colorama import fore, back, style

colorama.init()

text = "the quick brown fox jumps over the lazy dog"

print(fore.red + text)

print(back.green + text + style.reset_all)

print(text)

PowerShell控制台字型設定

1 開啟登錄檔 hkey current user console systemroot system32 windowspowershell v1.0 powershell.exe 2 找到鍵值 codepage 將資料改為 437 注意10進製 3 這樣就該後,只有直接開啟powershell....

Python3 X中的條件控制

python中沒有switch case語句。python中需條件 迴圈等後面使用冒號 做結尾。python中使用縮排劃分 塊,相同縮排則代表同乙個 塊。python中使用elif代替else if。可以使用比較運算子 in 和 not in 檢測值是否存在區間之中。if條件語句 a 10 if a...

控制台操作之字型顏色

必須有 include void color short x 設定顏色 setconsoletextattribute是api設定控制台視窗字型顏色和背景色的函式。原型定義 bool setconsoletextattribute handle hconsoleoutput,word wattrib...