Nizamuddin Siddiqui has Published 2307 Articles

Python - Which is faster to initialize lists?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 08-Aug-2020 08:11:16

131 Views

Python is a very flexible language where a single task can be performed in a number of ways, for example initializing lists can be performed in many ways. However, there are subtle differences in these seemingly similar methods. Python which is popular for its simplicity and readability is equally infamous ... Read More

Python - Ways to merge strings into list

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 14:27:21

139 Views

While developing an application, there come many scenarios when we need to operate on the string and convert it as some mutable data structure, say list.Example# Importing ast library import ast # Initialization of strings str1 ="'Python', 'for', 'fun'" str2 ="'vishesh', 'ved'" str3 ="'Programmer'" # Initialization of list list = [] ... Read More

Python - Ways to iterate tuple list of lists

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 14:25:29

140 Views

List is an important container and used almost in every code of day-day programming as well as web-development, more it is used, more is the requirement to master it and hence knowledge of its operations is necessary.Example# using itertools.ziplongest # import library from itertools import zip_longest   # initialising listoflist ... Read More

Python - Ways to invert mapping of dictionary

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 14:22:50

215 Views

Dictionary is a collection which is unordered, changeable and indexed. In Python, dictionaries are written with curly brackets, and they have keys and values. It is widely used in day to day programming, web development, and machine learning.Example Live Demo# using dict comprehension # initialising dictionary ini_dict = {101: "vishesh", 201 ... Read More

Python - Ways to format elements of given list

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 14:15:44

2K+ Views

A list is a collection which is ordered and changeable. In Python lists are written with square brackets. You access the list items by referring to the index number. Negative indexing means beginning from the end,  -1 refers to the last item. You can specify a range of indexes by specifying ... Read More

Python - Ways to flatten a 2D list

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 14:04:15

949 Views

A list is a collection which is ordered and changeable. In Python lists are written with square brackets. You access the list items by referring to the index number. Negative indexing means beginning from the end,  -1 refers to the last item. You can specify a range of indexes by specifying ... Read More

Python - Ways to find indices of value in list

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 14:00:31

131 Views

Usually, we require to find the index, in which the particular value is located. There are many method to achieve that, using index() etc. But sometimes require to find all the indices of a particular value in case it has multiple occurrences in list.Example Live Demo# using filter() # initializing list test_list = ... Read More

Python - Ways to create triplets from given list

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 13:58:29

249 Views

A list is a collection which is ordered and changeable. In Python lists are written with square brackets. You access the list items by referring to the index number. Negative indexing means beginning from the end,  -1 refers to the last item. You can specify a range of indexes by specifying ... Read More

Python - Ways to convert array of strings to array of floats

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 13:45:32

546 Views

String literals in python are surrounded by either single quotation marks, or double quotation marks. Assigning a string to a variable is done with the variable name followed by an equal sign and the string. You can assign a multiline string to a variable by using three quotes.Example Live Demo# array ... Read More

Python - Visualizing image in different color spaces

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Aug-2020 13:43:25

183 Views

OpenCV-Python is a library of Python bindings designed to solve computer vision problems. OpenCV-Python makes use of Numpy, which is a highly optimized library for numerical operations with a MATLAB-style syntax. All the OpenCV array structures are converted to and from Numpy arrays.Example# read image as RGB # Importing cv2 and matplotlib module import cv2 import ... Read More

Advertisements