python3 print顏色顯示

2022-04-18 11:21:16 字數 1101 閱讀 6402

-------------------------------

顯示方式 | 效果

-------------------------------

0 | 終端預設設定

1 | 高亮顯示

4 | 使用下劃線

5 | 閃爍

7 | 反白顯示

8 | 不可見

-------------------------------

-------------------------------------------

字型色 | 背景色 | 顏色描述

-------------------------------------------

30 | 40 | 黑色

31 | 41 | 紅色

32 | 42 | 綠色

33 | 43 | 黃色

34 | 44 | 藍色

35 | 45 | 紫紅色

36 | 46 | 青藍色

37 | 47 | 白色

-------------------------------------------

print('\033[1;33;40m',cart_list,'\033[0m')

print('this is a \033[1;35m test \033[0m!')

print('this is a \033[1;32;43m test \033[0m!')

print('\033[1;33;44mthis is a test !\033[0m')

Python3 print 函式用法總結

輸出字串和數字 print runoob 輸出字串 runoob print 100 輸出數字 100 str runoob print str 輸出變數 runoob l 1 2,a 列表 print l 1,2,a t 1 2,a 元組 print t 1,2,a d 字典 print d 格式...

Python 3 print 函式用法總結

1 print runoob 輸出字串 2runoob 3 print 100 輸出數字 4 100 5 str runoob 6 print str 輸出變數 7runoob 8 l 1,2,a 列表 9 print l 10 1,2,a 11 t 1,2,a 元組12 print t 13 1,...

python3 print 列印輸出

1 列印字串 print hello world 輸出結果 hello world 2 列印中文字串 print 世界,你好!輸出結果 世界,你好!3 列印變數 a 10 print a 輸出結果 10 4 列印自定義函式值 def add2 x,y return x 2,y 2 print add...