Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- import os
- productos = []
- while True:
- os.system('clear')
- print("Ingreso\t'1'\nLista\t'2'\nGuardar\t'3'\nSalir\t'4'")
- opcion = input("Ingrese una opcion: ")
- if opcion == "1":
- os.system('clear')
- while True:
- item = input("Ingrese nombre del producto ('S' para salir):" )
- if item == "S":
- break
- elif item in productos:
- input(f"Producto '{item}' ya fue cargado.")
- continue
- productos.insert(0, item)
- elif opcion == "2":
- os.system('clear')
- print('\n'.join(productos))
- input("press enter")
- continue
- elif opcion == "3":
- # "w" crea y sobre escribe el fichero si existe.
- # "a" añade al fichero, crea si no existe.
- with open("productos.txt", "a") as objeto_archivo:
- for elemento in productos:
- objeto_archivo.write(str(elemento) + "\n")
- elif opcion == "4":
- exit(0)
- else:
- print("Opcion incorrecta.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement