Advertisement
python_notes

Add color to Python code

Jun 3rd, 2015
496
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.16 KB | None | 0 0
  1. #  Add color to text in Python script
  2.  
  3. #  Example to run
  4.  
  5. print fcolor.Red + " Hello World"
  6.  
  7. class fcolor:
  8.     CReset='\033[0m'
  9.     CBold='\033[1m'
  10.     CDim='\033[2m'
  11.     CUnderline='\033[4m'
  12.     CBlink='\033[5m'
  13.     CInvert='\033[7m'
  14.     CHidden='\033[8m'
  15.     CDebugB='\033[1;90m'
  16.     CDebug='\033[0;90m'
  17.     Black='\033[0;30m'
  18.     Red='\033[0;31m'
  19.     Green='\033[0;32m'
  20.     Yellow='\033[0;33m'
  21.     Blue='\033[0;34m'
  22.     Pink='\033[0;35m'
  23.     Cyan='\033[0;36m'
  24.     White='\033[0;37m'
  25.     SBlack=CReset + '\033[30m'
  26.     SRed=CReset + '\033[31m'
  27.     SGreen=CReset + '\033[32m'
  28.     SYellow=CReset + '\033[33m'
  29.     SBlue=CReset + '\033[34m'
  30.     SPink=CReset + '\033[35m'
  31.     SCyan=CReset + '\033[36m'
  32.     SWhite=CReset + '\033[37m'
  33.     BBlack='\033[1;30m'
  34.     BRed='\033[1;31m'
  35.     BBlue='\033[1;34m'
  36.     BYellow='\033[1;33m'
  37.     BGreen='\033[1;32m'
  38.     BPink='\033[1;35m'
  39.     BCyan='\033[1;36m'
  40.     BWhite='\033[1;37m'
  41.     UBlack='\033[4;30m'
  42.     URed='\033[4;31m'
  43.     UGreen='\033[4;32m'
  44.     UYellow='\033[4;33m'
  45.     UBlue='\033[4;34m'
  46.     UPink='\033[4;35m'
  47.     UCyan='\033[4;36m'
  48.     UWhite='\033[4;37m'
  49.     BUBlack=CBold + '\033[4;30m'
  50.     BURed=CBold + '\033[4;31m'
  51.     BUGreen=CBold + '\033[4;32m'
  52.     BUYellow=CBold + '\033[4;33m'
  53.     BUBlue=CBold + '\033[4;34m'
  54.     BUPink=CBold + '\033[4;35m'
  55.     BUCyan=CBold + '\033[4;36m'
  56.     BUWhite=CBold + '\033[4;37m'
  57.     IGray='\033[0;90m'
  58.     IRed='\033[0;91m'
  59.     IGreen='\033[0;92m'
  60.     IYellow='\033[0;93m'
  61.     IBlue='\033[0;94m'
  62.     IPink='\033[0;95m'
  63.     ICyan='\033[0;96m'
  64.     IWhite='\033[0;97m'
  65.     BIGray='\033[1;90m'
  66.     BIRed='\033[1;91m'
  67.     BIGreen='\033[1;92m'
  68.     BIYellow='\033[1;93m'
  69.     BIBlue='\033[1;94m'
  70.     BIPink='\033[1;95m'
  71.     BICyan='\033[1;96m'
  72.     BIWhite='\033[1;97m'
  73.     BGBlack='\033[40m'
  74.     BGRed='\033[41m'
  75.     BGGreen='\033[42m'
  76.     BGYellow='\033[43m'
  77.     BGBlue='\033[44m'
  78.     BGPink='\033[45m'
  79.     BGCyan='\033[46m'
  80.     BGWhite='\033[47m'
  81.     BGIBlack='\033[100m'
  82.     BGIRed='\033[101m'
  83.     BGIGreen='\033[102m'
  84.     BGIYellow='\033[103m'
  85.     BGIBlue='\033[104m'
  86.     BGIPink='\033[105m'
  87.     BGICyan='\033[106m'
  88.     BGIWhite='\033[107m'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement