teslariu

mat

Sep 3rd, 2021
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.49 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. napolitana = ["tomate, ajo, 300 grs muzza", "Promo 2x3", 450, 650]
  5. muzzarella = ["salsa tomate, 300 grs muzza",None, 380, 550]
  6. primavera = ["salsa tomate, anana, 300 grs muzza", None, 380, 550]
  7. pizzas = [napolitana, muzzarella, primavera]
  8.    
  9. print("Ingredientes             Promo Costo Precio")
  10. print("------------------------------------------------------")
  11. for sabor_de_pizza in pizzas:
  12.     for e in sabor_de_pizza:
  13.         print(e, end = " ")
  14.     print()
  15.  
Advertisement
Add Comment
Please, Sign In to add comment