I did not managed to find similar question, if any exists Im sorry and I would be thankful for link.
Basing on this tutorial I am trying to manage to print with Python 3.x in console with a color. A simple example:
print('\033[2;31;43m CHEESY')
But instead of this it prints out:

Same results I get when using colorama or other libs.
System: Windows 10, Python: 3.10
Tried already:
coloramainit(convert=True)os.system("cls" or "clear")os.system("")

