Posts from Python

Finding the Frequency of every word from an Input using Dictionary in Python

By Sai Mukesh Reddy Gutha

Hey Coder, In this article we will learn to find the frequency of all words from the input using the Dictionary Data structure. Counting words using Dictionary in Python Dictionary.... Read More

How to calculate percentage in Python

By Animesh Arya

In this tutorial, we are going to learn about finding the percentage in Python. Example 1 : A student got 91 marks in Math, 100 on the computer, 98 in Science, out of 100. Find the.... Read More

Calculate Feels Like Temperature in Python

By Animesh Arya

In this tutorial, we will learn how to calculate the Feels like Temperature in Python. What is Feels Like Temperature? Wind Chill factor is so-called as feels like temperature. The.... Read More

How to use randint() Function in Python

By Harish Mullagura

In this tutorial, we will discuss how to use randint() function in Python. randint() is an inbuilt function of the random module. By importing random module we can use all of it fu.... Read More

How to use tell() method in Python?

By Varsha Neelamma

A file in a computer is simply an entity that stores/contain information. Python provides various methods for accessing and handling files, often called file handling operations. Y.... Read More

Speech Recognition in Python using CMU Sphinx

By Khushi Aswani

CMU Sphinx also known as sphinx, is an open-source toolkit for Speech Recognition. Talking about pocketsphinx, it is a part of CMU Sphinx which is used to recognize speech. Now you.... Read More

Fetch TMDB movie data using Python

By Shalini Gupta

Hey! Everyone I’m glad to see you here, hope you all are doing well. This post is going to be an interesting one for you and I hope it’ll fulfill your expectation after.... Read More

How to Install pyttsx3 in Python and convert text into speech offline

By Abhijeet Kr Ray

Pyttsx3 is a cross-platform text-to-speech library. It works on Windows, Mac, and Linux. It uses the native speech drivers for all operating systems and can be used offline. It use.... Read More

Related Posts