python print 輸出帶顏色字型

2022-01-28 22:39:46 字數 2330 閱讀 1484

終端的字元顏色是用轉義序列控制的,是文字模式下的系統顯示功能,和具體的語言無關

轉義序列是以esc開頭,即用\033來完成(esc的ascii碼用十進位制表示是27,用八進位制表示就是033)

書寫格式

開頭部分:\033[顯示方式;前景色;背景色m + 結尾部分:\033[0m

注意:開頭部分的三個引數:顯示方式,前景色,背景色是可選引數,可以只寫其中的某乙個;另外由於表示三個引數不同含義的數值都是唯一的沒有重複的,所以三個引數的書寫先後順序沒有固定要求,系統都能識別;但是,建議按照預設的格式規範書寫

對於結尾部分,其實也可以省略,但是為了書寫規範,建議\033[***開頭,\033[0m結尾

數值表示的引數含義:

顯示方式: 0(預設\)、1(高亮)、22(非粗體)、4(下劃線)、24(非下劃線)、 5(閃爍)、25(非閃爍)、7(反顯)、27(非反顯)

前景色: 30(黑色)、31(紅色)、32(綠色)、 33(黃色)、34(藍色)、35(洋 紅)、36(青色)、37(白色)

背景色: 40(黑色)、41(紅色)、42(綠色)、 43(黃色)、44(藍色)、45(洋 紅)、46(青色)、47(白色)

print("顯示方式:")

print("\033[0;37;40m--- replace the string ---\033[0m")

print("\033[1;37;40m--- replace the string ---\033[0m")

print("\033[22;37;40m--- replace the string ---\033[0m")

print("\033[4;37;40m--- replace the string ---\033[0m")

print("\033[24;37;40m--- replace the string ---\033[0m")

print("\033[5;37;40m--- replace the string ---\033[0m")

print("\033[25;37;40m--- replace the string ---\033[0m")

print("\033[7;37;40m--- replace the string ---\033[0m")

print("\033[27;37;40m--- replace the string ---\033[0m")

print("前景色:")

print("\033[0;30;40m--- replace the string ---\033[0m")

print("\033[0;31;40m--- replace the string ---\033[0m")

print("\033[0;32;40m--- replace the string ---\033[0m")

print("\033[0;33;40m--- replace the string ---\033[0m")

print("\033[0;34;40m--- replace the string ---\033[0m")

print("\033[0;35;40m--- replace the string ---\033[0m")

print("\033[0;36;40m--- replace the string ---\033[0m")

print("\033[0;37;40m--- replace the string ---\033[0m")

print("背景色:")

print("\033[0;37;40m--- replace the string ---\033[0m")

print("\033[0;37;41m--- replace the string ---\033[0m")

print("\033[0;37;42m--- replace the string ---\033[0m")

print("\033[0;37;43m--- replace the string ---\033[0m")

print("\033[0;37;44m--- replace the string ---\033[0m")

print("\033[0;37;45m--- replace the string ---\033[0m")

print("\033[0;37;46m--- replace the string ---\033[0m")

print("\033[0;37;47m--- replace the string ---\033[0m")

因為隔一段時間不用就忘,這樣整一下子用起來方便。

此處為原博文傳送門, 支援正版

Python print格式化輸出

python print格式化輸出 1.格式化輸出整數 python print也支援引數格式化,與c言的printf似,strhello the length of s is d hello world,len hello world print strhello 輸出果 the length o...

python print 內容顏色輸出

print 033 1 30m 字型顏色 白色 033 0m print 033 1 31m 字型顏色 紅色 033 0m print 033 1 32m 字型顏色 深黃色 033 0m print 033 1 33m 字型顏色 淺黃色 033 0m print 033 1 34m 字型顏色 藍色 ...

python print函式格式化輸出

1 club.topsage.com python print函式用法,print 格式化輸出 使用print輸出各型的 1.字串 2.整數 3.浮點數 4.出度及精度控制 strhello hello python print strhello 輸出結果 hello python 直接出字串 1....