I've been trying to print text in color in the Python Terminal with the TermColor Module (I'm using Windows 10 and Python 3.7), here's my code:
from termcolor import colored
while True:
print (colored("Hi my name is red text", "red"))
But it returns me this:
Can someone help me please?