“Python CMD -Farben” Code-Antworten

Python CMD -Farben

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__

So ändern Sie die Farbe der Eingabeaufforderung in 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

Ähnliche Antworten wie “Python CMD -Farben”

Fragen ähnlich wie “Python CMD -Farben”

Weitere verwandte Antworten zu “Python CMD -Farben” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen