AmitDiwan has Published 11365 Articles

How do I create a multidimensional list in Python?

AmitDiwan

AmitDiwan

Updated on 16-Sep-2022 12:29:39

846 Views

Multidimensional Lists are Lists within Lists. The left index as row number and right index as column number, for example list[r][c] Above, r is row number and c is column number. Let’s see an example. For multidimensional list 2x3 − list [2][3] Create a Multidimensional Python List Example ... Read More

How do you make an array in Python?

AmitDiwan

AmitDiwan

Updated on 16-Sep-2022 12:27:32

847 Views

The arrays in Python are ndarray objects. To create arrays in Python, use the Numpy library. Array is a container which can hold a fix number of items and these items should be of the same type. To work with arrays in Python, import the NumPy library. First, let us ... Read More

How do you remove multiple items from a list in Python?

AmitDiwan

AmitDiwan

Updated on 16-Sep-2022 12:22:20

3K+ Views

To remove more than one item from a list, we can use various ways as discussed in this article. Let’s say have the following input List − ["David", "Jacob", "Harry", "Mark", "Anthony", "Steve", "Chris"] Following is the output when multiple elements “David” and “Harry” are removed − ["Jacob", "Mark", ... Read More

How do you remove duplicates from a list in Python?

AmitDiwan

AmitDiwan

Updated on 16-Sep-2022 12:21:39

354 Views

To remove duplicates from a List in Python, we can use various ways as discussed in this article. Remove duplicates from a list using Dictionary Example In this example, we will remove duplicates from a list using OrderedDict − from collections import OrderedDict # Creating a List with duplicate ... Read More

How do I iterate over a sequence in reverse order in Python?

AmitDiwan

AmitDiwan

Updated on 16-Sep-2022 12:19:29

464 Views

Python Sequences includes Strings, Lists, Tuples, etc. We can merge elements of a Python sequence using different ways. Let’s see some examples of iteration over a List in reverse order. Iterate in Reverse Order using while loop Example In this example, we have a List as a sequence and iterate ... Read More

How do I convert between tuples and lists in Python?

AmitDiwan

AmitDiwan

Updated on 16-Sep-2022 12:14:31

188 Views

First, we will see how to convert Tuple into a List in Python. Convert Tuple with Integer Elements into a List To convert Tuple to a List, use the list() method and set the Tuple to be converted as a parameter. Example Let’s see the example # Creating a Tuple ... Read More

How do I read (or write) binary data in Python?

AmitDiwan

AmitDiwan

Updated on 16-Sep-2022 12:12:31

11K+ Views

To read or write a binary file, at first you need to understand the different file modes for Binary Files in Python − Mode Description rb Opens a file for reading only in binary format. The file pointer is placed at the beginning of the file. ... Read More

What are the new features added in Python 3.10 version?

AmitDiwan

AmitDiwan

Updated on 16-Sep-2022 12:10:30

182 Views

In this article, we will learn the new features in Python 3.10, compared to 3.9. Let’s see the features − Parenthesized context managers Using enclosing parentheses for continuation across multiple lines in context managers is now supported. This allows formatting a long collection of context managers in multiple lines in ... Read More

How do I delete a file in Python?

AmitDiwan

AmitDiwan

Updated on 16-Sep-2022 12:08:33

1K+ Views

To delete a file, use the remove() method in Python. Pass the name of the file to be deleted as an argument. Let us first create a file and read the content: We will display the contents of a text file. For that, let us first create a text file ... Read More

Functional Programming in Python

AmitDiwan

AmitDiwan

Updated on 16-Sep-2022 12:03:59

645 Views

Functional programming languages are specially designed to handle symbolic computation and list processing applications. Functional programming is based on mathematical functions. Some of the popular functional programming languages include: Lisp, Python, Erlang, Haskell, Clojure, etc. Characteristics of Functional Programming The most prominent characteristics of functional programming are as follows − ... Read More

Advertisements