“couleurs cmd python” Réponses codées

couleurs cmd python

from colorama import init
from colorama import Fore, Back, Style

init()

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')
# or
print('\033[31m' + 'some red text')
print('\033[39m') # and reset to default color
kripi__

Comment changer la couleur de l'invite de commande dans Python

import os
# To get all possible colors for the command line, open the command prompt
# and enter the command "color help"
os.system('color FF')
expliked

Réponses similaires à “couleurs cmd python”

Questions similaires à “couleurs cmd python”

Plus de réponses similaires à “couleurs cmd python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code