Posts by Nitesh Jhawar

Author Biographical Info: Not available

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

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

How to get the size of a file in Python

By Nitesh Jhawar

In this tutorial, we will be learning how to get the size of a file in Python. The file can be of any extension, .pdf, .py, .txt etc. Today we will be introducing another Python mo.... Read More

Delete Row from NumPy Array that contains a specific value

By Nitesh Jhawar

In this tutorial, we will be learning how to delete a row from Numpy array that contains a specific value in Python. (Numerical Python). You may be thinking, “This looks so e.... Read More

Related Posts