How Python terminals output color fonts

Source: Internet
Author: User


How Python terminals output color fonts

Implementation process:

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)

Writing format:

\033[display mode, foreground color, background m+ string \033[0m

Note :

display mode, foreground color, background color are optional parameters;

The foreground is the color of the font;

M is a must-write parameter;

Three parameters are not ordered, try to write in the following format

Example : print ("\033[33;41m Hello It Network \033[0m")


The meaning of the three parameters:

Display mode

0 (default), 1 (highlighted), 22 (not bold), 4 (underscore), 24 (non-underlined), 5 (blinking), 25 (non-blinking), 7 (inverted), 27 (non-inverting)

Front view

30 (Black), 31 (red), 32 (green), 33 (yellow), 34 (blue), 35 (magenta), 36 (cyan), 37 (white)

Background color

40 (Black), 41 (red), 42 (green), 43 (yellow), 44 (blue), 45 (magenta), 46 (cyan), 47 (white)


To illustrate:

Display by default, yellow font, red background

Print ("\033[0;33;41m Hello It Network \033[0m")

Display mode highlight, green font, red background

Print ("\033[1;32;41m Hello It Network \033[0m")

Font display RED

Print ("\033[31m Hello It Network \033[0m")


This article is from the "506554897" blog, please be sure to keep this source http://506554897.blog.51cto.com/2823970/1932861

How Python terminals output color fonts

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.