Colorare il testo

di il
1 risposte

Colorare il testo

Ciao

Cercando in internet non ho trovato nessuna funzione funzionante per colorare un testo o un numero nella shell di Python che sia diverso da quello di default

il risultato del codice riportato sotto è questo…

This is the color of the sky
This is the color of grass
This is a dimmer version of the sky
This is the color of the sun

Grazie per le risposte

import colorama
from colorama import Fore
from colorama import Style
colorama.init()
print(Fore.BLUE + Style.BRIGHT + "This is the color of the sky" + Style.RESET_ALL)
print(Fore.GREEN + "This is the color of grass" + Style.RESET_ALL)
print(Fore.BLUE + Style.DIM + "This is a dimmer version of the sky" + Style.RESET_ALL)
print(Fore.YELLOW + "This is the color of the sun" + Style.RESET_ALL)

1 Risposte

  • Re: Colorare il testo

    Ok risolto

    E' l'Idle incorporato nel pacchetto Python che non riesce a gestire i colori. 

    Usando un editor come VScode tutto funziona 

Devi accedere o registrarti per scrivere nel forum
1 risposte