Posts

Showing posts from September, 2019

ANAGRAMS GAME WITH PYTHON

THE PROGRAMES OF ANAGRAMES The program of anagrames is very fames game which is play in chiled hood of every person They are very interesting so lates play this game by using programming of using python the code of the prigrame is very simple str1=input("Enter the first string ") str2=input("Enter the secind string ") if(sorted(str1)==sorted(str2)): print("these are the anagrams") else: print("these are not anagrams")

Speech Recognition In python

                             speech Recognition System in python Speech recognition is the process of converting spoken words to text. Python supports many speech recognition engines and APIs, including Google Speech Engine, Google Cloud Speech API, Microsoft Bing Voice Recognition and IBM Speech to Text. In this tutorial, we will use the Google Speech Recognition Engine with Python. Installation A library that helps is named “SpeechRecognition”. You should install it with, or virtual. You can also install it system-wide it is also working on Spyder: the given command is open in spyder command "pip install SpeechRecognition" Speech Recognition demo: You can test the speech recognition module, with the command see it working or not "python-m speech recognition" The results show in the terminal. Speech Recognition with Google The example below uses the Google Speech Recognition Engine,...