Python - Hard Articles
In this article, we will learn how can we detect if a specific key is pressed by the user or not. The whole Module is… Read More
Scraping is a very essential skill that everybody should learn, It helps us to scrap data from a website or a file that can be… Read More
In this article, we are going to see how can we download files from our Google Drive to our PC and upload files from our… Read More
In this article, we will be learning different approaches to count the number of times a letter appears in a text file in Python. Below… Read More
In this article, we will code a python program to create a dictionary with the key as the first character and value as words starting… Read More
In this article we will learn how to calculate standard deviation of a Matrix using Python. Standard deviation is used to measure the spread of… Read More
We can use Python for Speech Recognition, it is mostly used to recognize English words. However, in this article, we are going to use Python… Read More
In this article, we will find the most similar sentence in the file to the input sentence. Example: File content: "This is movie." "This is… Read More
Seaborn is a Python data visualization library based on matplotlib. It provides a high-level interface for drawing attractive and informative statistical graphics. Seaborn helps resolve… Read More
Given list of elements, convert each element to a key-value pair dictionary, dividing digits equally. Input : test_list = [2323, 82, 129388, 234, 95] Output :… Read More
In this article, we will learn how we can download Instagram posts of a profile using Python Selenium module. Requirements: Google Chrome or Firefox Chrome… Read More
Prerequisite: seaborn The Boxplots are used to visualize the distribution of data which is useful when a comparison of data is required. Sometimes, Boxplot is… Read More
Art package is used to print decorative art’s on the terminal as well as to save in file and a word can be represented by… Read More
A Singleton pattern in python is a design pattern that allows you to create just one instance of a class, throughout the lifetime of a… Read More
The following article shows how by the use of two modules named, pyttsx3 and PyDictionary, we can make our system say out the meaning of… Read More
Prerequisite Implementing Web Scraping in Python with BeautifulSoup In this article, we are going to write a python script to get Flight Status. Module needed:… Read More
Every new Django project should use a custom user model. The official Django documentation says it is “highly recommended” but I’ll go a step further and say… Read More
Given the elements List, extract numbers with specific digits.  Input : test_list = [3456, 23, 128, 235, 982], dig_list = [2, 3, 5, 4] Output :… Read More
In this article, we will see how we can set an image to the image view object in PyQTGraph. PyQtGraph is a graphics and user… Read More
Prerequisite :  Beautiful soup Requests module In this article, we are going to see how we get Caller Id information using numverify API. Numverify offers… Read More