Skip to content

Instantly share code, notes, and snippets.

@CodeMaster7000
Created November 26, 2022 20:04
Show Gist options
  • Save CodeMaster7000/3ded34706a76d18ef465ed63c55870da to your computer and use it in GitHub Desktop.
Save CodeMaster7000/3ded34706a76d18ef465ed63c55870da to your computer and use it in GitHub Desktop.
A geeky joke generator to have all of you programmers cracking up!
import pyjokes
import time
print ("10 geeky jokes to have you cracking up: \n")
time.sleep(1.5)
jokes = pyjokes.get_jokes(language='en', category='neutral')
for i in range(10):
print(i+1,':',jokes[i])
time.sleep(2)
print("\n")
print("Well? How were they? Share with friends & family!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment