Suma y resta de arrays en Python
En este artículo, discutiremos cómo sumar y restar elementos de la array en Python. Ejemplo: Suppose we have two matrices A and B. A = [[1,2],[3,4]] B = [[4,5],[6,7]] then we get A+B = [[5,7],[9,11]] A-B = [[-3,-3],[-3,-3]] Ahora intentemos implementar esto usando Python 1. Sumar elementos de la array En el código anterior, hemos … Continue reading «Suma y resta de arrays en Python»