https://github.com/lucasvegalv/python_exammodelexercise
This exercise is an exam model where we integrate almost all the concepts we've been practicing in previous repos, like arrays, matrix (bidimensional), sorting, searching, max value and min value algorithms, etc. I'm a Python newbie so I'm very proud of the result. I'm enjoying the Python's learning process. It's being fun :)
https://github.com/lucasvegalv/python_exammodelexercise
algorithms arrays college-project doing exams matrix problem-solving python
Last synced: 11 months ago
JSON representation
This exercise is an exam model where we integrate almost all the concepts we've been practicing in previous repos, like arrays, matrix (bidimensional), sorting, searching, max value and min value algorithms, etc. I'm a Python newbie so I'm very proud of the result. I'm enjoying the Python's learning process. It's being fun :)
- Host: GitHub
- URL: https://github.com/lucasvegalv/python_exammodelexercise
- Owner: lucasvegalv
- Created: 2022-06-30T19:39:46.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-01T02:48:09.000Z (almost 4 years ago)
- Last Synced: 2025-02-23T00:45:12.984Z (over 1 year ago)
- Topics: algorithms, arrays, college-project, doing, exams, matrix, problem-solving, python
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python_ExamModelExercise
Instructions:
Una empresa desea registrar las ventas realizadas de cada uno de sus 20 productos a lo largo del año. Los productos están identificados por un código numérico correlativo del 1 al 20.
Como primera información se ingresa el precio unitario de cada uno de los productos. Luego por cada venta se ingresa:
• Código de producto
• Día de venta
• Mes de venta
• Cantidad de unidades vendidas
El ingreso de datos finaliza con un código de producto igual a 0. Informar:
• a. El detalle de unidades vendidas de cada producto en cada uno de los 12 meses
• b. El producto con el cual se obtuvo la mayor recaudación.
• c. El trimestre de menor recaudación del año.