Advertisement
cardel

Pruebas reto 3, Grupo P10

Jun 10th, 2021
1,442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.46 KB | None | 0 0
  1. print(resumen_producion((100, 200, 300, 400, 200, 300, 400, 500, 600, 900, 100, 110),
  2.                         (300, 200, 300, 400, 200, 300, 500, 500, 600, 400, 100, 250)))
  3.  
  4.  
  5. {'total_te_gas': 4110, 'costo_prod_te_gas': 2466000, 'ing_te_gas': 12741000, 'ganancia_te_gas': 10275000, 'total_te_sin_gas': 4050, 'costo_prod_te_sin_gas': 1296000, 'ing_te_sin_gas': 8910000, 'ganancia_te_sin_gas': 7614000, 'costo_prod_total': 3762000, 'ing_total': 21651000, 'ganancia_total': 17889000}
  6.  
  7. -------------------------------------------------------------
  8. print(resumen_producion((200, 200, 300, 800, 200, 300, 100, 4, 841, 120, 121, 45),
  9.                         (172, 200, 450, 120, 121, 184, 233, 155, 852, 400, 101, 17)))
  10.  
  11. {'total_te_gas': 3231, 'costo_prod_te_gas': 1938600, 'ing_te_gas': 10016100, 'ganancia_te_gas': 8077500, 'total_te_sin_gas': 3005, 'costo_prod_te_sin_gas': 961600, 'ing_te_sin_gas': 6611000, 'ganancia_te_sin_gas': 5649400, 'costo_prod_total': 2900200, 'ing_total': 16627100, 'ganancia_total': 13726900}
  12.  
  13. -------------------------------------------------------------
  14. print(resumen_producion((217,871,171,62,579,379,954,575,509,528,812,266),
  15.                         (105,932,24,745,385,384,579,611,674,42,211,219)))
  16.  
  17. {'total_te_gas': 5923, 'costo_prod_te_gas': 3553800, 'ing_te_gas': 18361300, 'ganancia_te_gas': 14807500, 'total_te_sin_gas': 4911, 'costo_prod_te_sin_gas': 1571520, 'ing_te_sin_gas': 10804200, 'ganancia_te_sin_gas': 9232680, 'costo_prod_total': 5125320, 'ing_total': 29165500, 'ganancia_total': 24040180}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement