mirror of https://github.com/dirtbags/moth.git
Counting example category now demonstrates python IDE
This commit is contained in:
parent
12becfaa09
commit
cf83ea0d7d
|
@ -0,0 +1,19 @@
|
||||||
|
---
|
||||||
|
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)
|
||||||
|
```
|
|
@ -1,9 +0,0 @@
|
||||||
Author: neale
|
|
||||||
Summary: counting by ones
|
|
||||||
Answer: 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 _
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
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)
|
||||||
|
```
|
|
@ -1,5 +0,0 @@
|
||||||
Author: neale
|
|
||||||
Summary: counting by twos
|
|
||||||
Answer: 16
|
|
||||||
|
|
||||||
2 4 6 8 10 12 14 _
|
|
Loading…
Reference in New Issue