I am aware of printing the statements in color. Eg:
"\033[34mHow are you ? \033[0m" -> This will print the statement in blue color.
But what if the string is stored in a variable, and then I need to print the value of the variable in color.
string= "How are you?"
print string
In the above case, I need when the value of string is printed, the output is in blue color.