diff --git a/README.md b/README.md index 845e38f..0577326 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,32 @@ -# python-coding-examples-template +# RobotX Workshops: Python Coding Examples + A collection of basic Python coding examples for RobotX Workshops students. + +## How to Use + +To learn from these examples, run each `.py` file individually to see the concepts in action. You can execute any Python file using the following command in your terminal: + +```bash +python filename.py +``` + +Or, if you're using Python 3 specifically: + +```bash +python3 filename.py +``` + +Each file demonstrates a specific Python concept with practical examples and explanations. + +## Table of Contents + +| File | Concept Covered | +|------|----------------| +| `variables.py` | Variables and Data Types | +| `loops.py` | Loops and Control Flow | +| `functions.py` | Functions | +| `classes.py` | Classes and Objects | + +--- + +For more courses, visit https://robotx.com