Posts from Python

How to get URL from HTML using lxml in Python

By Mariya Banatic J

In this tutorial, we will see two simple methods that are available in Python to get a URL from HTML using Python. Method 1 At first, we have to know about the lxml library. lxml: .... Read More

Gun Detection Program using OpenCV Python

By Akarsh Shekhar

We will learn about the detection of guns in Python with deep learning. We will be using CNN here. Gun detection using CNN and OpenCV in Python Importing Libraries We are going to .... Read More

Predict Age using Convolutional Neural Network in Python

By Akarsh Shekhar

In this tutorial program, we will learn about building Age Predictor using machine learning with the language used is Python. So here I am going to discuss what are the basic steps.... Read More

Implement Browser Automation using Selenium with Python

By Aman Kumar

Selenium is a powerful tool used for testing web pages. Selenium is an API that can support any browser on any os and its script can be written in various programming languages. In.... Read More

Named Entity Recognition using spaCy in Python

By Aman Kumar

In this tutorial, we will learn to identify NER(Named Entity Recognition). It is the very first step towards information extraction in the world of NLP. It locates and identifies e.... Read More

How to get the parent of the current directory in Python

By Aman Kumar

In this tutorial, we are going to learn to get the parent of the current directory in Python. Python provides os module. This module helps to interact with the operating system. We.... Read More

Word Cloud in Python

By Praveen Kumar

In this tutorial, We are going to understand the graphical representation of text data used for highlighting important or more frequent words or keywords. The word cloud in Python .... Read More

p-value in Machine Learning

By Praveen Kumar

In this tutorial, we are going to understand about the most frequently used topic in statistics called p-value. While performing a statistical test how can we know that the result .... Read More