Python - Easy Articles
This article covers the basics of multithreading in Python programming language. Just like multiprocessing, multithreading is a way of achieving multitasking. In multithreading, the concept… Read More
Prerequisite – Multiprocessing in Python | Set 1 , Set 2 This article discusses two important concepts related to multiprocessing in Python: Synchronization between processes… Read More
Newspaper is a Python module used for extracting and parsing newspaper articles. Newspaper use advance algorithms with web scraping to extract all the useful text… Read More
You may be familiar with searching for text by pressing ctrl-F and typing in the words you’re looking for. Regular expressions go one step further:… Read More
Translation Theory : DNA ? RNA ? Protein Life depends on the ability of cells to store, retrieve, and translate genetic instructions.These instructions are needed… Read More
Prerequisite – Loops in Python Predict the output of the following Python programs. 1) What is the output of the following program? x = ['ab',… Read More
Python offers multiple options for developing GUI (Graphical User Interface). Out of all the GUI methods, tkinter is the most commonly used method. It is… Read More
Think of a task you will always want your program to do, whether it runs perfectly or raise any kind of error. For example, We… Read More
A Python Virtual Environment is an isolated space where you can work on your Python projects, separately from your system-installed Python. You can set up… Read More
To get started with the Desktop News Notifier, we require two libraries: feedparser and notify2. Give following command to to install feedparser:  sudo pip3 install feedparser… Read More
Introduction:  Twitter is a popular social network where users share messages called tweets. Twitter allows us to mine the data of any user using Twitter… Read More
In this article, integrating SQLite3 with Python is discussed. Here we will discuss all the CRUD operations on the SQLite3 database using Python. CRUD contains… Read More
Prerequisite: Lists and Tuples 1) What is the output of the following program?   PYTHON List = [True, 50, 10] List.insert(2, 5)    print(List, "Sum is: ",… Read More
Let’s say you are working on a project that needs to do web scraping but you don’t know websites on which scraping is to be… Read More
Hangman Wiki: The origins of Hangman are obscure meaning not discovered, but it seems to have arisen in Victorian times, ” says Tony Augarde, author… Read More
Prerequisite: Dictionary 1) What is the output of the following program?  Python3 dictionary = {'GFG' : 'geeksforgeeks.org',               'google' : 'google.com',               'facebook' : 'facebook.com'               } del dictionary['google'];… Read More
This app helps in reminding birthdays and notifying your friend’s birthdays. This app uses Python and Ubuntu notifications to notify users on every startup of… Read More
The textwrap module can be used for wrapping and formatting of plain text. This module provides formatting of text by adjusting the line breaks in… Read More
In this article, we will cover what ** (double star/asterisk) and * (star/asterisk) do for parameters in Python,  Here, we will also cover args and… Read More
Given a number in decimal number convert it into binary, octal and hexadecimal number. Here is function to convert decimal to binary, decimal to octal… Read More