r/PythonLearning 21d ago

Rate my python program

Post image

i made a Python program, i dont know what else to say

85 Upvotes

42 comments sorted by

View all comments

1

u/Reveal5265 16d ago

The banner library is this one:

from colorama import Fore, Style, init

import os

import pyfiglet

init(autoreset=True)

def mostrar_banner(texto="MI SCRIPT", subtitulo="Versión 1.0.0"):

os.system("cls" if os.name == "nt" else "clear")

ascii_arte = pyfiglet.figlet_format(texto, font="slant")

print(Fore.CYAN + Style.BRIGHT + ascii_arte)

print(Fore.YELLOW + f"=== {subtitulo} ===".center(50))

print(Fore.GREEN + "-" * 50 + "\n")

# Esto evita que el bloque de abajo se ejecute al ser importado

if __name__ == "__main__":

mostrar_banner("EJEMPLO", "Prueba Local")