How to create an array of numbers 1 to n in python
An array is a collection of items of same type stored at contiguous memory locations. To access the elements, you only need to know the memory address of the first item of an array which is also known as base address. You can access all other items or traverse in an array by simply adding …
How to create an array of numbers 1 to n in python Read More »