mirror of https://github.com/dirtbags/moth.git
20 lines
309 B
Markdown
20 lines
309 B
Markdown
---
|
|
authors: ["neale"]
|
|
debug:
|
|
summary: counting by ones
|
|
answers: ["9"]
|
|
---
|
|
|
|
This category is about counting.
|
|
In it, you will be required to figure out how we're counting,
|
|
and count the next value.
|
|
|
|
1 2 3 4 5 6 7 8 _
|
|
|
|
Here is a Python program that might help:
|
|
|
|
```python
|
|
for i in range(20):
|
|
print(i)
|
|
```
|