If i ask about iphone, the output is: "The iPhone is a line of smartphones designed and marketed by Apple Inc. that use Apple's iOS mobile operating system." But i want to change it into german.
elif 'wikipedia' in query:
speak('Suche auf wikipedia...')
query = query.replace("wikipedia", "")
result = wikipedia.summary(query, sentences = 2)
print(result)
speak(result)