Skip to content

Instantly share code, notes, and snippets.

@JayantGoel001
Created January 9, 2021 11:02
Show Gist options
  • Save JayantGoel001/6dba364649a6688e0af32e646243dc20 to your computer and use it in GitHub Desktop.
Save JayantGoel001/6dba364649a6688e0af32e646243dc20 to your computer and use it in GitHub Desktop.
Generate Jokes using pyjokes
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