python print format函數(shù)的顏色與樣式設(shè)置技巧有哪些

小樊
87
2024-08-10 01:44:42

在Python中,我們可以使用ANSI轉(zhuǎn)義碼來(lái)設(shè)置打印輸出的顏色和樣式。下面是一些常用的技巧:

  1. 設(shè)置文字顏色:
print("\033[31mRed text\033[0m")  # 紅色文字
print("\033[32mGreen text\033[0m")  # 綠色文字
print("\033[33mYellow text\033[0m")  # 黃色文字
print("\033[34mBlue text\033[0m")  # 藍(lán)色文字
print("\033[35mMagenta text\033[0m")  # 品紅色文字
print("\033[36mCyan text\033[0m")  # 青色文字
print("\033[37mWhite text\033[0m")  # 白色文字
  1. 設(shè)置背景顏色:
print("\033[41mRed background\033[0m")  # 紅色背景
print("\033[42mGreen background\033[0m")  # 綠色背景
print("\033[43mYellow background\033[0m")  # 黃色背景
print("\033[44mBlue background\033[0m")  # 藍(lán)色背景
print("\033[45mMagenta background\033[0m")  # 品紅色背景
print("\033[46mCyan background\033[0m")  # 青色背景
print("\033[47mWhite background\033[0m")  # 白色背景
  1. 設(shè)置樣式:
print("\033[1mBold text\033[0m")  # 加粗文字
print("\033[4mUnderlined text\033[0m")  # 下劃線文字
print("\033[7mInverse text\033[0m")  # 反轉(zhuǎn)顏色

注意:在ANSI轉(zhuǎn)義碼中,\033 是轉(zhuǎn)義字符,[數(shù)字;數(shù)字m 是顏色和樣式控制碼,\033[0m 是恢復(fù)默認(rèn)設(shè)置。

這些技巧可以幫助我們?cè)赑ython中實(shí)現(xiàn)打印輸出的顏色和樣式設(shè)置。

0