“Python Colorama” Kod odpowiedzi

Colorama

from colorama import Fore, Back, Style
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')
Xanthous Xenomorph

Przykład Python Colorama

import colorama 
from colorama import Fore

print(Fore.RED, "Hello, World")

#prints a red hello world
Codie da homie

Jak używać Colorama

# Colorama is a module to color the python outputs
# 1. You have to install python with pip
# 2. go to your commandline and type:
#	linux: sudo pip install colorama
#	windows + mac: pip install colorama
# 3. wait for the download and then create a new python file
# 4. use the module colorama
import colorama
from colorama import Fore, Back, Style
# 5. the best way is to use colorama with f-strings
colorama.init(autoreset=True)#auto resets your settings after every output

print(f"{Fore.GREEN}green is one of the colors, there are many other colors!")
Breakable Bison

Python Colorama

Fore: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, RESET.
Back: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, RESET.
Style: DIM, NORMAL, BRIGHT, RESET_ALL
Helpless Hippopotamus

Odpowiedzi podobne do “Python Colorama”

Pytania podobne do “Python Colorama”

Więcej pokrewnych odpowiedzi na “Python Colorama” w Python

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

Przeglądaj inne języki kodu