http://stackoverflow.i2p/questions/287871/how-do-i-print-colored-text-to-the-terminal
Just put in os.system( " color " ) – CrazyVideoGamer Jul 16, 2021 at 13:06 | Show 17 more comments 1118 There is also the Python termcolor module . Usage is pretty simple: from termcolor import colored print colored('hello', 'red'), colored('world', 'green') Or in Python 3: print(colored('hello', 'red'), colored('world', 'green')) It may not be sophisticated enough, however, for game programming and the "...