• 20 November

    How to initialize array in Python

    In this article, we will see a different ways to initialize an array in Python. Array is collection of elements of same type. In Python, we can use Python list to represent an array. Using for loop, range() function and append() method of list Let’s see different ways to initiaze arrays Intialize empty array You […]