Basic Features
Using the basic features like Jokes, Quotes, Dogs, and more
Jokes:
import main as up #import the file!
joke = up.jokes() # we get the joke in the form of a dict
print(f"{joke['setup']}\n{joke['punchline']}") # We print the setup and the punchline - completing the jokeimport main as ap # import the file!
joke = up.ten_jokes() # get 10 jokes in the form of a dict!
for i in joke:
print(i["setup"]) #print the setup
print(i["punchline"], "\n") #print the punchlineInspiration:
Random Task:
Dog Images:
Random Cat Fact:
Last updated