Created
January 13, 2021 17:40
-
-
Save JayantGoel001/3d32a180a0f7742d31bc02d4c74d0581 to your computer and use it in GitHub Desktop.
Get Information related to a topic from Wikipedia using pywhatkit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pywhatkit as kt | |
topics = ["C++", "Python 3"] | |
text = {} | |
for topic in topics: | |
text[topic] = kt.info(topic, 4) | |
print(topic) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment