“Python Cmd Colors” Ответ

Python Cmd Colors

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__

Как изменить цвет командной строки в 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

Ответы похожие на “Python Cmd Colors”

Вопросы похожие на “Python Cmd Colors”

Больше похожих ответов на “Python Cmd Colors” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования