I am Using speech_recognition module but it giving me this error ModuleNotFoundError: No module named 'aifc'

import speech_recognition as sr r = sr.Recognizer() with sr.Microphone() as source: print("Talk") audio_text = r.listen(source) print("Time over, thanks") try: ...