import webbrowser def add(a, b): return a + b def askHelp(): print("You can ask help from google, stackoverflow, and so on") webbrowser.open("https://www.google.com/") import google def learn(self, query): result = google(query) self.knowledge += result learn(AI, "What is a lambda?")
The function learn is a method that updates the knowledge attribute of the AI object with the result of the google search.