Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- #
- napolitana = ["tomate, ajo, 300 grs muzza", "Promo 2x3", 450, 650]
- muzzarella = ["salsa tomate, 300 grs muzza",None, 380, 550]
- primavera = ["salsa tomate, anana, 300 grs muzza", None, 380, 550]
- pizzas = [napolitana, muzzarella, primavera]
- print("Ingredientes Promo Costo Precio")
- print("------------------------------------------------------")
- for sabor_de_pizza in pizzas:
- for e in sabor_de_pizza:
- print(e, end = " ")
- print()
Advertisement
Add Comment
Please, Sign In to add comment