Skip to content

Tag Archives: Python-array

In this article, we will discuss how an array or list can be passed to a function as a parameter in Python.  Pass an array… Read More
Given an array, the task is to write a Python program to remove the last element in Python.  Example: Input: [“geeks”, “for”, “geeks”] Output: [“geeks”,… Read More
In this article, we will discuss how to create an array of zeros in Python. In array items are stored at contiguous memory locations and… Read More
Prerequisites: Numpy Elements of an array can be referenced like a regular python array. Since python internally doesn’t support arrays, here whenever we use the… Read More
Shuffling a sequence of numbers have always been a useful utility, it is nothing but rearranging the elements in an array. Knowing more than one… Read More
Let us see how to copy arrays in Python. There are 3 ways to copy arrays :  Simply using the assignment operator. Shallow Copy Deep… Read More
List: A list is of an ordered collection data type that is mutable which means it can be easily modified and we can change its… Read More
List: A list in Python is a collection of items which can contain elements of multiple data types, which may be either numeric, character logical… Read More
Python List Python programming language has four collection data types namely List, Tuple, Set, and Dictionary. A list is a mutable and ordered collection i.e.,… Read More
Given a String S, a character array ch[], a number N and a replacing character, the task is to replace every Nth occurrence of each… Read More
An array is a collection of items stored at contiguous memory locations. The idea is to store multiple items of the same type together. This… Read More
Python provides many ways to create 2-dimensional lists/arrays. However one must know the differences between these ways because they can create complications in code that… Read More

Start Your Coding Journey Now!