Created
January 9, 2021 11:02
-
-
Save JayantGoel001/6dba364649a6688e0af32e646243dc20 to your computer and use it in GitHub Desktop.
Generate Jokes using pyjokes
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 pyjokes | |
jokes = pyjokes.get_jokes(category='all') | |
for i in range(len(jokes)): | |
print(i+1, ".", jokes[i]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment