Published
- 1 min read
python print to terminal with color
The solution for this is noted below
python print to terminal with color
Solution
from termcolor import colored
print colored('hello', 'red'), colored('world', 'green')
Try other methods by searching on the site. That is if this doesn’t work