Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

print colored text in python

def print_format_table():
    """
    prints table of formatted text format options
    """
    for style in range(8):
        for fg in range(30,38):
            s1 = ''
            for bg in range(40,48):
                format = ';'.join([str(style), str(fg), str(bg)])
                s1 += 'x1b[%sm %s x1b[0m' % (format, format)
            print(s1)
        print('
')

print_format_table()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #print #colored #text #python
ADD COMMENT
Topic
Name
4+8 =