This article mainly introduces how to output color text through the colorama module in python on the console. The example analyzes the functions and related usage skills of the colorama module, which has some reference value, for more information about how to use the colorama module to output color text on the console, see the example in this article. Share it with you for your reference. The specific analysis is as follows:
Colorama is a python module used to output color text on the console and command line. it can be used across platforms and works well in windows and linux, if you want to make the console output more beautiful, you can use this module.
Colorama official address: https://pypi.python.org/pypi/colorama
Install the colorama module
Pip install colorama
Example
From colorama import init, Foreinit (autoreset = True) # you can use the autoreset parameter to make the color effect only take effect on the current output. after the output is complete, the color is restored to the default setting print (Fore. RED + 'Welcome to www.jb51.net') print ('automatically back to default color again ')
This code can output the welcome to www.jb51.net string in red to the console
I hope this article will help you with Python programming.