All Basic Articles
Given a List, extract all elements whose frequency is greater than K. Input : test_list = [4, 6, 4, 3, 3, 4, 3, 4, 3,… Read More
This article will explore the process to create new tables in the PostgreSQL database using Python. Steps for creating PostgreSQL tables in Python To create… Read More
I recently participated in an On-campus ZS associates recruitment drive on 25th Aug 2020 and got selected as Software Engineer. I am sharing my interview… Read More
I applied for Amazon SDE-1 Internship through the AmazeWow program only for Women. Online Test Round: It was a quite easy round. It consists of… Read More
Given a binary tree, check whether it is a mirror of itself. Examples: Input: 5 / \ 3 3 / \ / \ 8 9… Read More
Homophily is the tendency in social groups of similar people connected together. We often hear similar voices interact with like-minded people. Homophily has a significant… Read More
The majority of us make this mistake early on, where we try to learn everything there about Software Development. One day we are watching a… Read More
The RichText widget is used to display text that uses various different styles. The displayed text is described using a tree of TextSpan objects, each… Read More
Given a string s, the task is to encrypt the string in the following way. Let the string be “apple”. Step 1: Reverse the input:… Read More
Java Parallel Streams is a feature of Java 8 and higher, meant for utilizing multiple cores of the processor. Normally any java code has one… Read More
In this article, speech to text feature is implemented in an application in Android. Speech to text means that anything that the user says is… Read More
Let us see how we can replace the column value of a CSV file in Python. CSV file is nothing but a comma-delimited file. Method… Read More
Sometimes we need an Excel file for reporting, so as a coder we will see how to export Pandas DataFrame to an Excel file. The… Read More
EOFError is raised when one of the built-in functions input() or raw_input() hits an end-of-file condition (EOF) without reading any data. This error is sometimes… Read More
re.MatchObject.span() method returns a tuple containing starting and ending index of the matched string. If group did not contribute to the match it returns(-1,-1). Syntax:… Read More
Python offers numerous inbuilt libraries to ease our work. Among them pywhatkit is a Python library for sending WhatsApp messages at a certain time, it… Read More
While working with NumPy, you might have seen some functions return the copy whereas some functions return the view. The main difference between copy and… Read More
  Django provides us Admin Panel for it’s users. So we need not worry about creating a separate Admin page or providing authentication feature as… Read More
Continue Cancel Box : It is used to display a window having a two option continue or cancel in EasyGUI, it can be used where… Read More
The shape of an array can be defined as the number of elements in each dimension. Dimension is the number of indices or subscripts, that… Read More