Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 21, 2020 04:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/2cecd1ed2c920f40747cdb32aabc3c9b to your computer and use it in GitHub Desktop.
Save parzibyte/2cecd1ed2c920f40747cdb32aabc3c9b to your computer and use it in GitHub Desktop.
"""
____ _____ _ _ _
| _ \ | __ \ (_) | | |
| |_) |_ _ | |__) |_ _ _ __ _____| |__ _ _| |_ ___
| _ <| | | | | ___/ _` | '__|_ / | '_ \| | | | __/ _ \
| |_) | |_| | | | | (_| | | / /| | |_) | |_| | || __/
|____/ \__, | |_| \__,_|_| /___|_|_.__/ \__, |\__\___|
__/ | __/ |
|___/ |___/
____________________________________
/ Si necesitas ayuda, contáctame en \
\ https://parzibyte.me /
------------------------------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
Creado por Parzibyte (https://parzibyte.me).
------------------------------------------------------------------------------------------------
Si el código es útil para ti, puedes agradecerme siguiéndome: https://parzibyte.me/blog/sigueme/
Y compartiendo mi blog con tus amigos
También tengo canal de YouTube: https://www.youtube.com/channel/UCroP4BTWjfM0CkGB6AFUoBg?sub_confirmation=1
------------------------------------------------------------------------------------------------
"""
import sys
nombres = []
precios = []
cantidades_vendidas = []
while True:
print("""
=========================
By Parzibyte
https://parzibyte.me
=========================
""")
eleccion = input("""
1 - Introducir un artículo nuevo
2 - Hacer una venta
3 - Mostrar información
4 - Borrar un artículo
5 - Borrar todos los artículos
6 - Salir
Seleccione: """)
if eleccion == "1":
nombre = input("Nombre del producto: ")
precio = float(input("Precio del producto: "))
cantidad_vendida = 0.0
nombres.append(nombre)
precios.append(precio)
cantidades_vendidas.append(cantidad_vendida)
elif eleccion == "2":
nombre_articulo = input("Nombre del artículo que se vende: ")
if nombre_articulo in nombres:
cantidad = float(input("Cantidad vendida: "))
indice = nombres.index(nombre_articulo)
precio = precios[indice]
cantidades_vendidas[indice] += cantidad
print(
f"Se vende(n) {cantidad} {nombre_articulo}. Total: {cantidad * precio}")
else:
print("El artículo no existe")
elif eleccion == "3":
if len(nombres) <= 0:
print("No hay artículos")
continue
# Los nombres de artículos
articulo_mas_vendido = nombres[0]
articulo_menos_vendido = nombres[0]
articulo_con_mas_ingresos = nombres[0]
articulo_con_menos_ingresos = nombres[0]
# Pero también necesitamos el conteo. Simplemente los inicializamos en un elemento del arreglo
mas_vendido = cantidades_vendidas[0]
menos_vendido = cantidades_vendidas[0]
con_mas_ingresos = cantidades_vendidas[0] * precios[0]
con_menos_ingresos = cantidades_vendidas[0] * precios[0]
print("+--------------------+----------+----------+----------+")
print("|NOMBRE |CANT. |PRECIO |IMPORTE |")
print("+--------------------+----------+----------+----------+")
indice = 0
total = 0
while indice < len(nombres):
nombre = nombres[indice]
precio = precios[indice]
cantidad_vendida = cantidades_vendidas[indice]
importe = precio * cantidad_vendida
print("|{:<20}|{:>10.2f}|{:>10.2f}|{:>10.2f}|".format(
nombre, cantidad_vendida, precio, importe))
print("+--------------------+----------+----------+----------+")
if cantidad_vendida > mas_vendido:
mas_vendido = cantidad_vendida
articulo_mas_vendido = nombre
if cantidad_vendida < menos_vendido:
menos_vendido = cantidad_vendida
articulo_menos_vendido = nombre
if importe > con_mas_ingresos:
con_mas_ingresos = importe
articulo_con_mas_ingresos = nombre
if importe < con_menos_ingresos:
con_menos_ingresos = importe
articulo_con_menos_ingresos = nombre
total += importe
indice += 1
print(
"|--------------------|----------|TOTAL: |{:>10.2f}|".format(total))
print("+--------------------+----------+----------+----------+")
print(
f"Artículo más vendido: {articulo_mas_vendido}, con {mas_vendido} unidades")
print(
f"Artículo menos vendido: {articulo_menos_vendido}, con {menos_vendido} unidades")
print(
f"Artículo con más ingresos: {articulo_con_mas_ingresos}, con {con_mas_ingresos} euros")
print(
f"Artículo con menos ingresos: {articulo_con_menos_ingresos}, con {con_menos_ingresos} euros")
elif eleccion == "4":
nombre_articulo = input("Nombre del artículo que se elimina: ")
if nombre_articulo in nombres:
indice = nombres.index(nombre_articulo)
del nombres[indice]
del precios[indice]
del cantidades_vendidas[indice]
print(f"Se elimina {nombre_articulo}")
else:
print("El artículo no existe")
elif eleccion == "5":
if input("Seguro (s/n): ") == "s":
nombres = []
precios = []
cantidades_vendidas = []
elif eleccion == "6":
if input("Seguro (s/n): ") == "s":
sys.exit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment