Working in Python 2.7

1

How do I leave a bold item? print ('Company Soon Young Viana') How do I enter an income tax sheet? print ('PRODUCT' '\ t'u' UNIT COVER '' \ t''QUANTITY '' \ t'u'FULL TIME '' \ t''ICMS ')

    
asked by anonymous 22.11.2015 / 17:37

1 answer

0

Install TermColor: TermColor

import sys
from termcolor import colored, cprint

    text = colored('Hello, World!', 'red', attrs=['reverse', 'blink'])
    print(text)
    cprint('Hello, World!', 'green', 'on_red')

    print_red_on_cyan = lambda x: cprint(x, 'red', 'on_cyan')
    print_red_on_cyan('Hello, World!')
    print_red_on_cyan('Hello, Universe!')

    for i in range(10):
        cprint(i, 'magenta', end=' ')



    cprint("Attention!", 'red', attrs=['bold'], file=sys.stderr)

should work

    
22.11.2015 / 17:45