“Kolory Python CMD” Kod odpowiedzi

Kolory Python CMD

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__

Jak zmienić kolor podpowiedzi poleceń w Pythonie

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

Odpowiedzi podobne do “Kolory Python CMD”

Pytania podobne do “Kolory Python CMD”

Więcej pokrewnych odpowiedzi na “Kolory Python CMD” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu