Python Multidimensional arrays

Python Multidimensional arrays are another fascinating concept to learn for beginners. Learn more about Python Multidimensional arrays here. Python Multidimensional arrays: Lists in lists A good way to visualize a 2d array is as a list of lists. Something like this: lst=[[1,2,3],[4,5,6],[7,8,9]] here the outer list lst has three things in it. each of those … Continue reading Python Multidimensional arrays