Python通過2種方法輸出帶顏色字體
方法1:
使用Python中自帶的print輸出帶有顏色或者背景的字符串
書寫語法
print(033[顯示方式;前景色;背景色m輸出內(nèi)容033[0m)
其中,顯示方式、前景色、背景色都是可選參數(shù)(可缺省一個(gè)或多個(gè))。
參數(shù)
顯示方式
顯示方式 效果 0 默認(rèn) 1 粗體 4 下劃線 5 閃爍 7 反白顯示
print('顯示方式:')print('033[0mSuixinBlog: https://suixinblog.cn033[0m')print('033[1mSuixinBlog: https://suixinblog.cn033[0m')print('033[4mSuixinBlog: https://suixinblog.cn033[0m')print('033[5mSuixinBlog: https://suixinblog.cn033[0m')print('033[7mSuixinBlog: https://suixinblog.cn033[0m')
顏色
字體色編號 背景色編號 顏色 30 40 黑色 31 41 紅色 32 42 綠色 33 43 黃色 34 44 藍(lán)色 35 45 紫色 36 46 青色 37 47 白色
print('字體色:')print('033[30mSuixinBlog: https://suixinblog.cn033[0m')print('033[31mSuixinBlog: https://suixinblog.cn033[0m')print('033[32mSuixinBlog: https://suixinblog.cn033[0m')print('033[4;33mSuixinBlog: https://suixinblog.cn033[0m')print('033[34mSuixinBlog: https://suixinblog.cn033[0m')print('033[1;35mSuixinBlog: https://suixinblog.cn033[0m')print('033[4;36mSuixinBlog: https://suixinblog.cn033[0m')print('033[37mSuixinBlog: https://suixinblog.cn033[0m')print('背景色:')print('033[1;37;40mtSuixinBlog: https://suixinblog.cn033[0m')print('033[37;41mtSuixinBlog: https://suixinblog.cn033[0m')print('033[37;42mtSuixinBlog: https://suixinblog.cn033[0m')print('033[37;43mtSuixinBlog: https://suixinblog.cn033[0m')print('033[37;44mtSuixinBlog: https://suixinblog.cn033[0m')print('033[37;45mtSuixinBlog: https://suixinblog.cn033[0m')print('033[37;46mtSuixinBlog: https://suixinblog.cn033[0m')print('033[1;30;47mtSuixinBlog: https://suixinblog.cn033[0m')
方法2:
colorama是一個(gè)python專門用來在控制臺(tái)、命令行輸出彩色文字的模塊,可以跨平臺(tái)使用。
1. 安裝colorama模塊
pip install colorama
可用格式常數(shù):
Fore: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, RESET.Back: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, RESET.Style: DIM, NORMAL, BRIGHT, RESET_ALL
跨平臺(tái)印刷彩色文本可以使用彩色光的常數(shù)簡稱ANSI轉(zhuǎn)義序列:
from colorama import Fore,Back,Styleprint (Fore.RED + 'some red text')print (Back.GREEN + 'and with a green background')print (Style.DIM + 'and in dim text')print (Style.RESET_ALL)print ('back to normal now!!')
Init關(guān)鍵字參數(shù):
init()接受一些* * kwargs覆蓋缺省行為
init(autoreset = False):
如果你發(fā)現(xiàn)自己一再發(fā)送重置序列結(jié)束時(shí)關(guān)閉顏色變化每一個(gè)打印,然后init(autoreset = True)將自動(dòng)化示例:
from colorama import init,Foreinit(autoreset=True)print (Fore.RED + 'welcome to python !!')print ('automatically back to default color again')
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. IntelliJ IDEA設(shè)置默認(rèn)瀏覽器的方法2. idea設(shè)置提示不區(qū)分大小寫的方法3. HTTP協(xié)議常用的請求頭和響應(yīng)頭響應(yīng)詳解說明(學(xué)習(xí))4. IntelliJ IDEA創(chuàng)建web項(xiàng)目的方法5. VMware中如何安裝Ubuntu6. docker容器調(diào)用yum報(bào)錯(cuò)的解決辦法7. .NET SkiaSharp 生成二維碼驗(yàn)證碼及指定區(qū)域截取方法實(shí)現(xiàn)8. CentOS郵件服務(wù)器搭建系列—— POP / IMAP 服務(wù)器的構(gòu)建( Dovecot )9. css代碼優(yōu)化的12個(gè)技巧10. django創(chuàng)建css文件夾的具體方法
