Created
November 26, 2022 20:04
-
-
Save CodeMaster7000/3ded34706a76d18ef465ed63c55870da to your computer and use it in GitHub Desktop.
A geeky joke generator to have all of you programmers cracking up!
This file contains 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 | |
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