Python - Basic Articles
Data science is an extremely important field in current times! So much so that data scientist is now called the “Sexiest Job of the 21st… Read More
Project Title: Pollster (Voting System) web application using Django frameworkType of Application (Category): Web application. Introduction: We will create a pollster (voting system) web application… Read More
Give an integer N and the task is to print hollow half diamond pattern. Examples: Input : 6 Output : # # # # #… Read More
Twitter is a popular social network where users share messages called tweets. Twitter allows us to mine the data of any user using Twitter API… Read More
Have you ever faced an issue where you need to perform a task in background that will take up a lot of time to complete?… Read More
Sometimes while working with Python strings, we can have a problem in which we need to extract the frequency of all the words in a… Read More
This article focus on the find_one() method of the PyMongo library. find_one() is used to find the data from MongoDB.  Prerequisites: MongoDB Python Basics  Let’s… Read More
cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.polar() function is used to convert a complex… Read More
cMath module contains a number of functions which is used for mathematical operations for complex numbers. The cmath.phase() function is used to get the phase… Read More
Levenshtein distance between two strings is defined as the minimum number of characters needed to insert, delete or replace in a given string string1 to… Read More
In this article we will see how we can get the pixmap restricted by the spin box. If the spin box has any children, then… Read More
Sometimes, while working with Python dictionaries, we can have a problem in which we need to perform the sorting of it, wrt keys, but also… Read More
This article will help you if you are confused about which platform to begin coding Python on as Python gives you a variety of options.… Read More
Creating a basic chatbot using Python in Jupyter Notebook. This chatbot interacts with the user using the hardcoded inputs and outputs which are fed into… Read More
Using Python speeds up the trading process, and hence it is also called automated trading/ quantitative trading. The use of Python is credited to its… Read More
Given 3 integers A, B, and C, and an integer N, the task is to distribute N among all the other 3 numbers such that… Read More
Tkinter is a standard Python GUI (Graphical User Interface) library that provides a set of tools and widgets to create desktop applications with graphical interfaces.… Read More
Tkinter is Python’s standard GUI (Graphical User Interface) package. tkinter we can use to build out interfaces – such as buttons, menus, interfaces, and various… Read More
We are now stepping into making applications with graphical elements, we will learn how to make cool apps and focus more on its GUI(Graphical User… Read More
PyTorch torch.add() method adds a constant value to each element of the input tensor and returns a new modified tensor. Syntax: torch.add(inp, c, out=None) Arguments… Read More