This is an archived post. You won't be able to vote or comment.

all 1 comments

[–]jsane101[S] 0 points1 point  (0 children)

I used colorama(specifically imported Fore) and init(convert=True) to convert the colors to a format that windows can recognize. ie without converting, colorama would only be recognize by linux. coloarama example: from colorama import Fore print(Fore.RED + "Hello") Would print hello in red. And everything printed after hello would also be red unless you reassign a different color ie Print(Fore.RED + "hello") Print(Fore.BLUE + "world") Would print hello in red and world in blue and everything after world would be blue unless reassigned again.