I am trying simply to use cprint in a very simple command :
import sys
from termcolor import colored, cprint
cprint("xxxxxxxx", 'blue', 'on_yellow')
[43m[34mxxxxxxxx[0m
cprint("xxxxxxxx", 'blue')
[34mxxxxxxxx[0m
however, I get no blue color and I get the strings "[34m' and '[0m' (before and after the string 'xxxxxx'. I have imported (as seen) the sys and the termcolor. I am using pip version 19.2.3. Please help! thanks, Mike