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…
[34m[1mThis is the color of the sky[0m
[32mThis is the color of grass[0m
[34m[2mThis is a dimmer version of the sky[0m
[33mThis is the color of the sun[0m
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)