Respuesta :

Python has two basic loop structures, while and for in.

```
i = 0
while( i < 10 ):
    print i
    i += 1

for i in range( 10 ):
    print i
```

Sorry, I don't know what's in the apus week 5 forum.