mirror of https://github.com/dirtbags/moth.git
16 lines
195 B
Markdown
16 lines
195 B
Markdown
|
---
|
||
|
authors: ["neale"]
|
||
|
debug:
|
||
|
summary: counting by twos
|
||
|
answers: ["16"]
|
||
|
---
|
||
|
|
||
|
2 4 6 8 10 12 14 _
|
||
|
|
||
|
Here is a Python program that might help:
|
||
|
|
||
|
```python
|
||
|
for i in range(2, 20, 2):
|
||
|
print(i)
|
||
|
```
|