Random Joke Fetcher

Welcome to the Random Joke Fetcher page.

This page contains a brief description and implementation instructions for the project.

Project Description

A fun CLI tool that fetches a random joke from an online API (e.g. Official Joke API) or from a local list. Displays it to the user.

Project Requirements

Python 3.x, requests (if using an API).

How to Run the Project

  1. Write a script (e.g. joke.py) that either contains a list of jokes or uses requests.get() on a joke API.
  2. Run it: python joke.py. It prints a joke (setup and punchline) on the console.

Key Concepts Learned

Possible Extensions

Troubleshooting & Debugging

See Troubleshooting & Debugging.

← Back to Python Programming Page