Category: Python Tutorial
Best Python Tutorial for Beginners and Software Developers. This Tutorial will you to learn python in a very easy and interactive way with lots of examples and video tutorials.
KNN Algorithm in Machine Learning
Last updated on 26th November 2022 by Madderla Saikumar | Category: Data Science & ML, Machine Learning, Python Tutorial
Algorithms drive the Machine Learning world Among them, there’s an algorithm often labeled as lazy. But it’s quite a performer when it comes to classifying data points. It’s called the k-nearest neighbours algorithm and is often quoted as one of the most important machine learning algorithms. The k-nearest neighbours (KNN) algorithm is a data classification method for estimating the […]
Django Form Template Layout
Last updated on 7th October 2022 by Varsha | Category: Django Tutorial, Python Tutorial
In this tutorial, we will attempt to comprehend how to use HTML Forms in Django to create forms that collect user information and produce a simple template layout. A form in HTML is a collection of components contained within the <form> tag. These components enable the user to enter values, selection options, and other information, […]
Working with PDF Files in Python
Last updated on 22nd November 2021 by [email protected] | Category: Python Tutorial
We all are familiar with pdf files. PDF stands for Portable Document Format and its file extension is “.pdf”. We use it in our daily lives knowingly or unknowingly, for eg. you get your book or certificate downloaded from the internet they are mostly in pdf format and in the current scenario after the COVID […]
Website Blocker with GUI using Python
Last updated on 12th June 2021 by [email protected] | Category: Python Tutorial
In this blog we will discuss about “How to make Website Blocker using Python“. Website Blocker is a tool that will help you to block some website that is specified by you that you don’t want to allow to be open on your PC or Laptop. This project will help you to stay away from […]
How to Create a Digital Clock Using Turtle-Python
Last updated on 10th June 2021 by [email protected] | Category: Python Tutorial, Uncategorised
Time flies. To keep track of it, one of the greatest invention was the clock. We have come a long way transforming from the analogue clock to the digital clock, with a more versatile functionality. Is it not great to build your own digital clock from scratch? Don’t worry, your dream will come true in […]
Integrating FaceBook Like and Comment in Our Django Web Application
Last updated on 10th June 2021 by [email protected] | Category: Django Tutorial, Python Tutorial
Facebook Integrations in Django In this article, I will show you how you can integrate Facebook likes and Comment in Our Django Web Application. Integrating FaceBook Like & Comment in Our Django Web Application has become so much easy that every beginner progammer can do it. So before starting, I am assuming that you have […]
Cartoonify an Image Using OpenCV-Python
Last updated on 30th May 2021 by [email protected] | Category: Python Tutorial
Cartoons are something that everyone likes whether you are a child of 10 years or an adult of 40 years. What if I tell you, it’s possible to cartoonify an image of yours all by yourself by just writing a few lines of python code, wouldn’t it be awesome. Let’s get started. Cartoonify an Image […]
Getting Started with Turtle Programming in Python
Last updated on 30th May 2021 by [email protected] | Category: Python Tutorial
Hi there, today we will be talking about something interesting as well as simple. In this tutorial we will understand what the python turtle module is and will learn about turtle programming in python in detail. So, let’s get started. Requirements Basic knowledge of python(go through Learn Python Tutorial) . We can use any ide […]
How To Use Pandas Library in Django
Last updated on 6th December 2021 by [email protected] | Category: Django Tutorial, Python Tutorial
Learn how to use pandas in Django. In this tutorial, you will learn how to use pandas in Django data. And convert a query set of data into a Data frame. Like how you convert a CSV data file into a Data Frame. And perform the data science operation right away in Django Views. Requirements […]
Blurring an Image Using OpenCV-Python
Last updated on 23rd May 2021 by [email protected] | Category: Python Tutorial
Hi there, today we will be talking about something interesting as well as simple : How to Blur an Image Using OpenCV module in Python. An image has many features (for example:- edge, contrast etc.). A blurred image is really smooth that means the edges are not observed here. Blurring an image has many benefits […]