Remove multiple spaces from a string in Python

By Nitesh Jhawar

In this tutorial, we will learn how to remove multiple spaces from a string and replace them with a single space. Replace multiple spaces with a single space in Python First of all.... Read More

Removing Double Quotes from a String in Java

By Akash Tripathi

Hello programmers, today we will be looking on how to remove double quotes in a given string in Java. Now, there may be several ways to do so, One might think of iterating over the.... Read More

OTP Generation in Java

By Tanisha Saxena

In this tutorial, I will show you the program to generate a random OTP in java. They are a unique pattern of numbers of a defined length, used for security purposes. For instance, .... Read More

The simplest GUI using Python

By Rachna Patel

Hello Pythoneers, You have always wondered what else can we do with Python rather than just some basic programs and games. Well, your wait is over because in this tutorial you̵.... Read More

Creating a simple calculator using Java AWT

By Sneha Mitra

In this Java tutorial, we will learn about the Java AWT(Abstract Window Toolkit). As a result, using this concept we will learn how to build a simple calculator using Java AWT. Thi.... Read More

Count the number of files in a directory in Python.

By Prakash Raj

In this session, we are going to discuss how to count the total number of files in a given directory in Python. How to Count the total number of files in a directory in Python firs.... Read More

10 Popular  Web Frameworks available to use directly in Python

10 Popular Web Frameworks available to use directly in Python

By Pavitra Walia | May 21, 2019

Python is a very versatile language known for its robust and easy to implement nature. No need to take care about the declaration of the type. Python is now getting widely used because of its ready to use library and frameworks. In this tutorial, we will be learning about different types of available frameworks in […] Read More

Validate Email in Python

By Nitesh Jhawar

In this tutorial, we will learn how to validate email in Python. Email validation is required in order to determine whether the mail address is valid, risky or Invalid. A valid ema.... Read More

Related Posts