Functions and Loops
What is a Function?
- A function is a way to organize code into reusable sections.
- It is a group of related statements that perform a specific task.
- You can pass data, known as parameters, into a function.
- A function can return data as a result.
Defining a Function
1 2 3 4 5 |
|
Passing Variables into a Function
1 2 3 4 5 |
|
Returning a Result From a Function
1 2 3 |
|
Calling a Function
1 2 |
|
Using a Loop
A loop is a way to repeat the same action.
We can use a loop to have our car move in a square
1 2 3 4 5 6 |
|
Let's examine the pieces of the for statement:
- Starts with the reserved word for
- Uses a variable that iterates
- Next is the reserved word in
- Finally, there is the data that is iterated over. In this example, we have a set (or range) of numbers. Note: a range is defined (by default) as starting at zero, so range(4) means that we are counting 0, 1, 2, 3.
Challenge
Rewrite the main.py code to use functions for forward, reverse, left, right, and stop
Use a loop so you don't "cut and paste" code
After your robot successfully moves in a square, can you make it move in an octogon route?