Python 練習(xí)實(shí)例35
python 練習(xí)實(shí)例35
題目:文本顏色設(shè)置。
程序分析:無(wú)。
實(shí)例:
#!/usr/bin/python # -*- coding: utf-8 -*- class bcolors: header = '\033[95m' okblue = '\033[94m' okgreen = '\033[92m' warning = '\033[93m' fail = '\033[91m' endc = '\033[0m' bold = '\033[1m' underline = '\033[4m' print (bcolors.warning + "警告的顏色字體?" + bcolors.endc)
以上實(shí)例輸出結(jié)果為:
警告的顏色字體? # 淺黃色