3
Guys I’m doing a game for college and I decided to put some colors in the code to look cute. I wanted to know how to make the colors of the strings appear in the cmd of windows. I tried to use the Ascii system but it didn’t work, below is a direct example of the code:
def menu():
print('\033[1;33mEntrando na configuração\033[1;33m')
select_rodadas()
select_player()
The last two cmd lines should be yellow or orange. How do I make cmd recognize the colors?
I suggest consult this post SO/en
– It Wasn't Me