91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python通過2種方法輸出帶顏色字體

發布時間:2020-08-30 16:42:13 來源:腳本之家 閱讀:182 作者:pfeiliu 欄目:開發技術

方法1:

使用Python中自帶的print輸出帶有顏色或者背景的字符串

書寫語法

print(\033[顯示方式;前景色;背景色m輸出內容\033[0m)

其中,顯示方式、前景色、背景色都是可選參數(可缺省一個或多個)。

參數

顯示方式

顯示方式 效果
0 默認
1 粗體
4 下劃線
5 閃爍
7 反白顯示

print("顯示方式:")
print("\033[0mSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[1mSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[4mSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[5mSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[7mSuixinBlog: https://suixinblog.cn\033[0m")

Python通過2種方法輸出帶顏色字體

顏色

字體色編號 背景色編號 顏色
30 40 黑色
31 41 紅色
32 42 綠色
33 43 黃色
34 44 藍色
35 45 紫色
36 46 青色
37 47 白色

print("字體色:")
print("\033[30mSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[31mSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[32mSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[4;33mSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[34mSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[1;35mSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[4;36mSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[37mSuixinBlog: https://suixinblog.cn\033[0m")
print("背景色:")
print("\033[1;37;40m\tSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[37;41m\tSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[37;42m\tSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[37;43m\tSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[37;44m\tSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[37;45m\tSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[37;46m\tSuixinBlog: https://suixinblog.cn\033[0m")
print("\033[1;30;47m\tSuixinBlog: https://suixinblog.cn\033[0m")

Python通過2種方法輸出帶顏色字體

方法2:

colorama是一個python專門用來在控制臺、命令行輸出彩色文字的模塊,可以跨平臺使用。

1. 安裝colorama模塊

pip install colorama

可用格式常數:

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

跨平臺印刷彩色文本可以使用彩色光的常數簡稱ANSI轉義序列:

from colorama import Fore,Back,Style
print (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關鍵字參數:

init()接受一些* * kwargs覆蓋缺省行為

init(autoreset = False):

如果你發現自己一再發送重置序列結束時關閉顏色變化每一個打印,然后init(autoreset = True)將自動化
示例:

from colorama import init,Fore
init(autoreset=True)
print (Fore.RED + "welcome to python !!")
print ("automatically back to default color again")

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

酒泉市| 句容市| 永安市| 安乡县| 延边| 虞城县| 鸡西市| 西乌珠穆沁旗| 南投市| 乐平市| 博客| 峨眉山市| 营口市| 磴口县| 扬中市| 莆田市| 正镶白旗| 元江| 剑阁县| 清原| 辰溪县| 峨山| 阿尔山市| 普定县| 车致| 临武县| 盐源县| 石城县| 双牌县| 弥勒县| 白沙| 竹溪县| 西峡县| 吴旗县| 宜川县| 延川县| 昭觉县| 开江县| 庄浪县| 南漳县| 舟山市|