Answers for "how to search on wikipedia with python and speak the result"

0

how to search on wikipedia with python and speak the result

import wikipedia
import pyttsx3
word = "python programmming"
result = wikipedia.summary(word)
print(result)
pyttsx3.speak(result)
Posted by: Guest on October-19-2021

Code answers related to "how to search on wikipedia with python and speak the result"

Python Answers by Framework

Browse Popular Code Answers by Language