Curriculum Outline
Python with Robots
- Unit 1
- Getting to know codebot
- Unit 2
- Turn in square
- if/elif/else
- while Loop
- Unit 3
- if/else inside loop
- Unit 4
Curriculum Outline
Python with Robots
1 2 3 4 5 6 7 |
num = 10 while num < 100: num = num + 10 if a button pressed : num = num -1 if b button pressed : num = num + 2 |