Posts from Python

Reverse string without using function in Python

By Nitesh Jhawar

In this tutorial, we will learn how to reverse a given string in Python. There are many methods but let’s see how to do it without using functions. I hope you know how for lo.... Read More

A simple Candy Machine in Python

By Rachna Patel

Hey Pythoneers, You might have seen people using a booth like a machine for purchasing candies or soda. Well, have you ever wondered how it works? In this tutorial, I’ll show.... Read More

Count number of Vowels and Consonants in a string using Python

By Nitesh Jhawar

In this tutorial, we will learn how to count the number of vowels and consonants in a string in python. I hope you know what consonants and vowels are. We will be using If Else sta.... Read More

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

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

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