Program to Combine 2d Arrays || 2D Array || Python

In this we are going to see a basic program to combine 2D arrays in Python Programming Language.


from array import *

arr1 = [[1,3,5],[8,5,3],[1,7,4]]
arr2 = [[6,8,3],[9,8,2],[1,4,6]]
print(arr1+arr2)



#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post