Ya se vio anteriormente como poner color a las letras y al fondo al programa cuando lo ejecutamos. Bueno también hay otra forma de hacer lo mismo pero con otras funciones.
- Código:
from colorama import init, Fore, Back, Style
init()
x=True
y=False
print(Fore.RED+'x and y is ',x and y)
print(Back.WHITE+"x or y is ",x or y)
print(Fore.WHITE+Back.BLUE+"not x is ", not x)
- Ejecución:
No hay comentarios:
Publicar un comentario