在Python中,我們可以使用ANSI轉義碼來設置打印輸出的顏色和樣式。下面是一些常用的技巧:
print("\033[31mRed text\033[0m") # 紅色文字
print("\033[32mGreen text\033[0m") # 綠色文字
print("\033[33mYellow text\033[0m") # 黃色文字
print("\033[34mBlue text\033[0m") # 藍色文字
print("\033[35mMagenta text\033[0m") # 品紅色文字
print("\033[36mCyan text\033[0m") # 青色文字
print("\033[37mWhite text\033[0m") # 白色文字
print("\033[41mRed background\033[0m") # 紅色背景
print("\033[42mGreen background\033[0m") # 綠色背景
print("\033[43mYellow background\033[0m") # 黃色背景
print("\033[44mBlue background\033[0m") # 藍色背景
print("\033[45mMagenta background\033[0m") # 品紅色背景
print("\033[46mCyan background\033[0m") # 青色背景
print("\033[47mWhite background\033[0m") # 白色背景
print("\033[1mBold text\033[0m") # 加粗文字
print("\033[4mUnderlined text\033[0m") # 下劃線文字
print("\033[7mInverse text\033[0m") # 反轉顏色
注意:在ANSI轉義碼中,\033
是轉義字符,[數字;數字m
是顏色和樣式控制碼,\033[0m
是恢復默認設置。
這些技巧可以幫助我們在Python中實現打印輸出的顏色和樣式設置。