Open in app
Home
Notifications
Lists
Stories

Write
Vivek Nikam and Abhay Chaudhari
Vivek Nikam and Abhay Chaudhari

Home

Jul 5, 2021

NumPy Arrays( Part III )

smart and simple In this article, we will see some functions related to linear algebra and more. eye: It creates an identity matrix.

Numpy

3 min read

NumPy Arrays( Part III )
NumPy Arrays( Part III )

Jul 3, 2021

NumPy Arrays( Part II )

smart and simple In a previous article, we have seen how we can create a numpy array manually. In this article, we will see how we can create an array randomly, slicing of 2D array and functions related to array. How to create an array randomly? There are a lot…

Python

3 min read

NumPy Arrays( Part II )
NumPy Arrays( Part II )

Jul 1, 2021

NumPy Arrays( Part I )

smart and simple Points which we are going to discuss in numpy articles are as follow: What is numpy? Functions in numpy Relational operations on numpy Image operations using numpy __________________________________________________________________ Numpy stands for numeric python. Numpy is like a list data structure but more powerful than the list. First…

Python

3 min read

NumPy Arrays( Part I )
NumPy Arrays( Part I )

Jun 22, 2021

Map, Filter and Reduce in Python

smart and simple I hope you all are familiar with list, tuple, set, and dictionary in python. In this article, we will see what is map, filter, and reduce in python. Before that let’s see what is lambda function. Normal function resides in memory for the lifetime of a program…

Lambda

3 min read

Map, Filter and Reduce in Python
Map, Filter and Reduce in Python

Jun 20, 2021

Python Dictionary( Part II )

smart and simple In the last article, we have discussed the dictionary in python. Now we will discuss functions in dictionaries. Functions we are going to see: fromkeys pop popitem setdefault update ________________________________________________________ let’s create a dictionary first We can create a new dictionary using fromkeys() function with keys from…

Dictionary

3 min read

Python Dictionary( Part II )
Python Dictionary( Part II )

Jun 18, 2021

Python Dictionary( Part I )

smart and simple Dictionary is one of the most important data structure in python. Dictionary is a mutable object which means we can add and delete values from it. It is a collection of key:value pairs inside curly braces ( { } ). d1 = { key1:value1, key2:value2, key3:value3 }

Dictionary

3 min read

Python Dictionary( Part I )
Python Dictionary( Part I )

Jun 17, 2021

Python Set (Part II)

smart and simple In this article, we will learn functions in the set. Set is a mutable object which means we can add or delete elements from the set. There are some special functions in the set. union intersection difference difference_update and many more. The operation we have implemented in…

Set

3 min read

Python Set (Part II)
Python Set (Part II)

Jun 16, 2021

Python Set(Part I)

smart and simple This is going to be a very interesting article related to the set in python. Properties of set in python: Unique elements Fast in search Unordered elements __________________________________________________________ we can create set by placing elements inside curly braces( {} ) for example S1 = {10, 20, 30,40} …

Set

3 min read

Python Set(Part I)
Python Set(Part I)

Jun 14, 2021

Python Tuple

smart and simple So, talking about tuple in python is a collection of items inside the round brackets.

Tuples

3 min read

Python Tuple
Python Tuple

Jun 13, 2021

Python List (Part V)

smart and simple List Comprehension Well, now you all are very much familiar with lists in python and this will be the last article for the list. Today we will see the list comprehension which is very interesting and will help us to save time while coding. Let’s understand what it is. …

Lists

3 min read

Python List (Part V)
Python List (Part V)
Vivek Nikam and Abhay Chaudhari

Vivek Nikam and Abhay Chaudhari

Smart and Simple Solutions.

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Knowable