Posts by Vimal Pandey

Author Biographical Info: Not available

Count the total number of words in a sentence in Python

By Vimal Pandey

In this post, we will learn to count the total number of words in a sentence in Python. For this, we will use different inbuilt Python functions. So welcome back guys in this tutor.... Read More

Python Docstrings

By Vimal Pandey

In this tutorial post, we will learn about docstring in Python. Docstring, also known as Python Documentation String is used to associate documentation with Python modules, functio.... Read More

How to parse HTML in Python

By Vimal Pandey

In this post, we will learn how to parse HTML (Hypertext Markup language) in Python. Parsing is a technique of examining web text which is the combination of different tags, tokens.... Read More

Count a specific word in a sentence with Python

By Vimal Pandey

Hello coders. Welcome back. In this post, we will learn to count a specific word in a sentence with Python. Counting the occurrence of a specific word in Python is very easy. If yo.... Read More

Python string rjust() and ljust() methods

By Vimal Pandey

Hello coders. Welcome to this post where we will learn Python string rjust() and ljust() methods. We are well-known with justify icons in Ms-word which align the text to right, .... Read More

Print colored text in the terminal in Python

By Vimal Pandey

Welcome back, programmers. In this post, we will know-how to print colored text in the terminal in Python. There are various methods of printing colored text in the terminal and we.... Read More

Merge two dictionaries in a single expression in Python

By Vimal Pandey

In this post, we will learn how to merge two dictionaries in a single expression in Python. Merging is the process of combining two or more things into a single unit. A dictionary .... Read More

What is Metaclass in Python

By Vimal Pandey

Hello coders. In this post, we will learn what is a metaclass in Python? In Python, there is metaprogramming of classes that is known with the name of a metaclass. Metaprogramming.... Read More

Related Posts