The character color of terminal is controlled by escape sequence, and it is the system display function in text mode, which is independent of the specific language.
The escape sequence begins with the ESC, which is done with \033 (the ASCII code for ESC is 27 in decimal notation, or 033 in octal). Format:\033[display mode; background color m + font you want to change color
:\033[0m Note: The first part of the three parameters: Display mode, foreground color, background color is an optional parameter, you can write only one of them, in addition, because the three parameters of the different meaning of the values are unique and no duplication, so the three parameters of the writing sequence is not fixed requirements, the system can be recognized; It is recommended that you write in the default format specification. for the end part, can also be omitted, but in order to write the specification, it is suggested \033[*** beginning, \033[0m end.
numeric representation of the parameter meaning:
Display mode: 0 (default), 1 (highlight), 22 (not bold), 4 (underscore), 24 (non-underlined), 5 (blinking), 25 (non-flashing), 7 (inverted), 27 (non-inverting)
Foreground color: 30 (Black), 31(Red), 32(Green), 33(Yellow), 34(Blue), 35(Magenta), 36(Cyan), 37 (white)
Background color: 40(Black) ( red ) 42 ( green ) 43 ( yellow ) ( blue ) 45 ( magenta ) ( cyan ) , 47 (white)
example: print ("\033[5;32;41m Insufficient balance \033[0m") /span>
Apart, it is: the beginning, the end does not say, 5 is the display mode is: Flashing, 32 is the foreground color: green, that is, the font color; 41 is the background color: red
If there is anything wrong with the place, welcome to point out, thank you!
/span>
Python Terminal output Font Color