Ваш код работает на моей машине с Linux, но если вы работаете в Windows, сначала вам нужно позвонить init()
(согласно документации ). Код выглядит следующим образом:
#!/usr/bin/python3
from colorama import Fore, Back, Style, init
# only required on Windows
init()
# print some example lines
print(Fore.RED + 'some red text')
print(Back.GREEN + 'and with a green background')
print(Style.DIM + 'and in dim text')
print(Style.RESET_ALL)
print('back to normal now')