lol/lol.py

11 lines
296 B
Python
Raw Permalink Normal View History

2021-06-10 21:11:49 +00:00
from jokeapi import Jokes # Import the Jokes class
j = Jokes() # Initialise the class
joke = j.get_joke(category=['programming', 'dark']) # Retrieve a random joke
if joke["type"] == "single": # Print the joke
print(joke["joke"])
else:
print(joke["setup"])
print(joke["delivery"])