Count the number of words in a string in JavaScript

By Faruque Ahamed Mollick

It is quite an easy task to count the number of words in a given string with JavaScript. In this article, I will show you how to perform this task. To count words from the string, .... Read More

Create PDF file from .txt file in Python

By Abhirup Majumder

In this tutorial, we are going to discuss about how to create a pdf file from a .txt file in Python. We are going to do this using fpdf package. fpdf package is basically a package.... Read More

sympy.Add() method in Python

By Sumanth Mahishi

In this tutorial, you will learn about the sympy.Add() method in Python. To date we have performed mathematics operations on integers, floating point numbers, etc… but what i.... Read More

Adjust the Sharpness of an Image in Python

By Mohan Sai Varun Kasarla

After reading this article you will be able to adjust Sharpness of an Image in Python. For this purpose, we use the Python Imaging Library (PIL). PIL consists of various Classes. W.... Read More

Check if a string starts with a specific substring in C++

By Ayush Tripathi

Hello, guys in this tutorial, we will learn how to check if a string starts with specific substring in C++. In input, we have two strings let say, s1 and s2. We will check if s1 st.... Read More

Check if all Characters of String are Alphanumeric or not in Python

By Mohan Sai Varun Kasarla

In this tutorial, you will learn about how to check if all characters of String are Alphanumeric or not in Python. String Class consists of various pre-defined Methods. We mainly u.... Read More

Convert a Numpy Array to Image in Python

By Mohan Sai Varun Kasarla

In this tutorial, you will learn how to Convert a Numpy Array to Image in Python. Here, we are going to use the Python Imaging Library ( PIL ) Module and Numerical Python (Numpy) M.... 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

Related Posts