I'm trying to create a little program which should print something if in what I say (not only one word but a phrase) (using speech_recognizer) there is a word which is contained in a list of words (word_list). Also the output should change if I say one word or another so I need to check exactly which word is it.
import speech_recognition as sr
word_list = ['Giotto', 'Raffaello', 'Michelangelo']
recognizer_instance = sr.Recognizer()
with sr.Microphone() as source:
recognizer_instance.adjust_for_ambient_noise(source)
print("I'm listening...")
audio = recognizer_instance.listen(source)
print('Printing what I heard...')
try:
text = recognizer_instance.recognize_google(audio, language='it-IT')
print(text)
except Exception as e:
print(e)
this is my code at the moment and I can't figure out how to check if one of the words contained in the text variable is in my word_list
If you simply wish to check if what you said is in the list you can use:
this will return
True
if the variable'stext
content is insideword_list
.EDIT:
You can define a dictionary instead of a list and store the bio of each artist like that:
Then in order to print this bio if the recognizer heard the matching word you can use:
EDIT2 :
if your text is an entire sentence you could first split it and then use same logic as before.