“Agregar color al texto en Python” Código de respuesta

Agregar color al texto en Python

def colored(r, g, b, text):
    return "\033[38;2;{};{};{}m{} \033[38;2;255;255;255m".format(r, g, b, text)
  
text = 'Hello, World'
colored_text = colored(255, 0, 0, text)
print(colored_text)

#or

print(colored(255, 0, 0, 'Hello, World'))

Agregar color al texto en Python


class bcolors:
    HEADER = '\033[95m'
    OKBLUE = '\033[94m'
    OKCYAN = '\033[96m'
    OKGREEN = '\033[92m'
    WARNING = '\033[93m'
    FAIL = '\033[91m'
    ENDC = '\033[0m'
    BOLD = '\033[1m'
    UNDERLINE = '\033[4m'

Bright Booby

Respuestas similares a “Agregar color al texto en Python”

Preguntas similares a “Agregar color al texto en Python”

Más respuestas relacionadas con “Agregar color al texto en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código