My code currently only prints text in blue but I would like some important messages to be printed using the print() command but in colors such as red.
I tried using something called colorama which I found in a different question's answer.
import colorama
from colorama import Fore, Back, Style
colorama.init()
print(Fore.RED+'Hello')
But it came up with this:
Traceback (most recent call last):
File "E:/Color test", line 1, in <module>
import colorama
ImportError: No module named colorama
Does anyone know how to do it or at least know if it is possible?
EDIT: I have found a similar question and tried all of the answers but none of them worked. I will really appreciate anybody's help.