Posts by Caio G Sa Silva • 11 points
1 post
-
0
votes1
answer50
viewsQ: I’m having trouble putting two matrices together
def matrizsomada(a, b): num_elementos_a = len(a) num_elementos_b = len(b) x = [] for i in range(num_elementos_a or num_elementos_b): x.append([a[i],b[i]]) return x a = [1,2,3] b =…
pythonasked Caio G Sa Silva 11