
How to Implement 2D Array in Python
How to implement 2d array in python : In this article we will see how to create a two-dimensional array in python. Overview In python, a two-dimensional array is an array that is inside another array. We can call it an array of arrays. To identify the position of an element in this kind of two-dimensional array, we need to specify two index instead of one (the first index corresponds to the row of the array and the second index to the column). The easiest way to create this type of table is to use nested lists. So we will see after this tutorial how…