Top 10 Python Libraries

In this blog, I will talk about the famous 10 libraries of python with their features along with examples.  Opencv Python  BeautifulSoup  Requests Numpy Scikit Learn  Tensorflow  Matplotlib SqlAlchemy Pytest PyQt Opencv Python Opencv or Open Source Computer Vision is a library for image processing, machine learning, and computer vision applications, etc. originally developed by […]

Read More

Tableau Interview Questions and Answers

Today, Tableau is one of the most crucial tools strong-handedly ruling the software and business workplaces around. In the competitive world, the more you know about the tool, the more the chances of you getting recruited. As we know that Tableau increases the weightage to your resume, here we are presenting the compilation of 101 […]

Read More

SubString In Python

Here is what we have on this page today. What is substring? String slicing. find() method. Check for a substring and count its occurrence. Splitting strings. We know that a string is a sequence of characters, but today we will learn how to get a part of any string, known as substring. Checkout this complete Online […]

Read More

Linear Regression Algorithm

Linear regression is more than 200 years old algorithm is used for predicting properties with a training data set. In this blog we will learn What is linear regression Calculate statistical quantities from a training data set. Calculate linear regression coefficients from a data set. Make predictions using linear regression. Use sklearn library to make […]

Read More

How To Convert List To String In Python?

You might have used lists in almost all of your programs, and suddenly required to change it to a string, maybe to print the result in a single line, or something else. So in this blog, I will share with you the various methods with which you can convert a list to a string in […]

Read More

Data Structures in Python

Data Structures in python are used to store organised data.Your programs are almost built around data structures so that you can work effectively and efficiently with the data.The data structures are categorized into primitive data structures, built in data structures and user defined data structures. Primitive data structures These are the basic data structures, including […]

Read More

Polymorphism In Python

You might have used many built-in methods or defined many class methods in python, so let’s dive deep into their functionality and a concept of object oriented programming that is polymorphism today. What is Polymorphism Common examples of Polymorphism Polymorphism between functions and objects Polymorphism within inheritance Method Overriding Run time and Compile time polymorphism […]

Read More

Python Numpy Tutorial

This Blog is enough to get you started for hand ons with numpy, because it covers What is Numpy Getting started is Numpy Arrays in numpy Operations with numpy Statistics with Numpy Estimate Mean ,Median and Percentile Using Numpy Estimate Standard Deviation and Variance Using Numpy Random Data Distribution with Numpy and Matplotlib What Is […]

Read More

What are Python Arrays and how to use them?

In this blog we will learn What are python arrays? Difference between python arrays and python lists Creating array in python Accessing elements of the array Adding elements to array Removing elements from array Suppose you had to store names of all the members of your group,how would you do it using python? Storing each […]

Read More

Object Oriented Programming In Python

Object-oriented programming (OOP) is a programming concept based on the objects that interact with each other to perform the functions. Each object can be characterized by a behaviour and state. An object keeps the current state and the behavior in the fields and methods. It emphasizes the DRY(Don’t Repeat Yourself) Principle. For instance, an object […]

Read More