I want to add text color while print output. How to do that ?
Example: Print('Hello Everyone.') I want output text
Hello Everyone will highlighted red color.
Thanks you!
I want to add text color while print output. How to do that ?
Example: Print('Hello Everyone.') I want output text
Hello Everyone will highlighted red color.
Thanks you!
An easy way to do this is to import a color module like colorama or termcolor. This site might be useful: Print Colors in Python terminal. For you code it would be:
or