Python - Basic Articles
Multi factor authentication is one of the most basic principle when adding security for our applications. In this tutorial, we will be adding multi factor… Read More
The following article shows how given an integer list, we can produce the sum of all its odd and even digits. Input : test_list =… Read More
Introduction: Logistic Regression is a supervised learning algorithm that is used when the target variable is categorical. Hypothetical function h(x) of linear regression predicts unbounded… Read More
Python is one of the simplest programming language out there. In fact, it was developed for the sole purpose of simplifying the process of learning… Read More
While defining algorithms, programmers often neglect the importance of grouping the same methods of different algorithms. Normally, they define algorithms from start to end and… Read More
CherryPy also known as a web application library is a Python web framework that provides a friendly interface to the HTTP protocol for Python developers.… Read More
String comparison is a fundamental operation in any programming language, including Python. It enables us to ascertain strings’ relative positions, ordering, and equality. Python has… Read More
There is always a little confusion among budding developers between a parameter and an argument, this article focuses to clarify the difference between them and… Read More
Streamlit is an open-source app framework in python language. It helps us create beautiful web apps for data science and machine learning in a little… Read More
Suppose you want to travel to places using Indian Railways and have booked a train. But you are not sure that the train is on… Read More
Given a String, add a phrase in the middle of it. Input : test_str = ‘geekforgeeks is for geeks’, mid_str = “good” Output : geekforgeeks is… Read More
Decorators in Python is one of the most useful concepts supported by Python. It takes functions as arguments and also has a nested function. They… Read More
Prerequisite: Implementing Web Scraping in Python with BeautifulSoup In this article, we are going to see how we extract all the paragraphs from the given… Read More
Both queue.queue and collections.deque commands give an idea about queues in general to the reader but, both have a very different application hence shouldn’t be… Read More
The contents list is provided by Beautiful Soup which is a web scraping framework for Python. Web scraping is the process of extracting data from… Read More
Progressive Web Apps or PWA are a type of application that is developed using web technologies and can be installed on any device like a… Read More
Djongo is a SQL to MongoDB query transpiler. Using djongo, we can use MongoDB as a backend database for our Django project. We don’t even… Read More
Automatic admin interface one of the most powerful parts of Django. Metadata is read from your models to provide a quick, model-centric interface where trusted… Read More
Prerequisite- Beautifulsoup module In this article, we are going to draft a python script that removes a tag from the tree and then completely destroys… Read More
Given a dictionary, assign its keys as function calls. Case 1 : Without Params.  The way that is employed to achieve this task is that,… Read More