Skip to content

Latest commit

 

History

History
80 lines (51 loc) · 2.87 KB

File metadata and controls

80 lines (51 loc) · 2.87 KB

The Excuse Generator CLI (in python)

Disneyland for procrastinators and lazy people.

This project is ideal to are avoiding someone annoying, it takes no more than 20 lines of code, and it can save you for the rest of your life!

this exact same picture

The Goal

We wanted a project that used very little Python but still with a very fun application, the excuse generator takes 20 lines of code, is super simple to understand and is the perfect first-ish project for any beginner developer.

Instructions

Please create a python script that generates an excuse each time it is runned.

Discuss with your classmates the strategy first

How can we generate an excuse? How are sentences built?

Excuse generator explanation

The idea is to generate each part of the sentence randomly to come up with great excuses!

🌱 How to start this project

Do not clone this repository because we are going to be using a different template.

We recommend opening the python boilerplate, using a provisioning tool like Codespaces (recommended) or Gitpod. Alternatively, you can clone the GitHub repository on your local computer using the git clone command.

This is the repository you need to open or clone:

$ git clone https://github.com/4GeeksAcademy/python-hello

Then, Run the app by typing on the terminal:

$ python3 main.py

💡 Important: Remember to create a new repository, update the remote (git remote set-url origin <your new url>), and upload the code to your new repository using add, commit, and push.

Hint

  1. Create an app.py file with one excuse hard-coded in one variable.
  2. The excuse must be in a variable:
excuse = 'The dog eat my homework when I finished'
  1. Using python, create a function that generates and returns a random excuse with the following structure:
who = ['the dog','my granma','his turtle','my bird']
what = ['eat','pissed','crushed','broked']
when = ['before the class','right in time','when I finished','during my lunch','while I was praying']
  1. To create a consistent excuse, you have to concatenate one item from each array in the proper order.
  2. Print the excuse on the console using the print function.

Technologies

Python.

Fundamentals

This exercise covers the following fundamentals:

  1. Running python files.
  2. How to work with Lists (arrays).
  3. Generating random numbers.
  4. Concatenating strings.
  5. Using functions (at least a bit).