Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.03 KB

File metadata and controls

37 lines (23 loc) · 1.03 KB

Task Toss

Task Toss is a simple Python application that randomly assigns household tasks to MY children. This project is designed to make chore assignments fun and fair, helping to distribute responsibilities evenly among family members.

Feel free to contribute to this project by submitting issues or pull requests.

Features

  • Randomly assigns tasks from a predefined list to each child.
  • Simple and efficient implementation using Python.
  • Easy to modify task and child lists as needed.

Installation

To use Task Toss, you need to have Python installed on your machine. You can clone the repository using the following command:

git clone https://github.com/trendev/task-toss.git

Navigate to the project directory:

cd task-toss

Usage

Run the main.py file to see the random task assignments:

python main.py

Code Overview

The main functionality is contained in the assign_tasks function, which takes a list of kids and a list of tasks, shuffles the tasks, and assigns one task to each kid.