<div dir="ltr">No sorry,<div><br></div><div>it's because my problem is not so simple:</div><div>imagine that in a100 contains not integer sorted in a good way but a random float numbers.</div><div>How could I display only one item every 10?</div>
<div><br></div><div>thanks</div><div><br></div><div>Gabriele</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">2014-02-17 11:08 GMT-05:00 Oscar Benjamin <span dir="ltr"><<a href="mailto:oscar.j.benjamin@gmail.com" target="_blank">oscar.j.benjamin@gmail.com</a>></span>:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On 17 February 2014 16:05, Gabriele Brambilla<br>
<div><div class="h5"><<a href="mailto:gb.gabrielebrambilla@gmail.com">gb.gabrielebrambilla@gmail.com</a>> wrote:<br>
> Hi,<br>
><br>
> I'm wondering how I can (if I can) make a for loop in which I don't use all<br>
> the elements.<br>
><br>
> for example<br>
><br>
> a100 = list(range(100))<br>
><br>
> for a in a100:<br>
>              print(a)<br>
><br>
> it print out to me all the numbers from 0 to 99<br>
> But if I want to display only the numbers 0, 9, 19, 29, 39, ...(one every 10<br>
> elements) how can I do it WITHOUT defining a new list (my real case is not<br>
> so simple) and WITHOUT building a list of indexes?<br>
<br>
</div></div>for a in a100:<br>
    if a % 10 == 9:<br>
        print(a)<br>
<br>
Alternatively:<br>
<br>
for a in a100:<br>
    if a % 10 == 9:<br>
        continue<br>
    print(a)<br>
<span class="HOEnZb"><font color="#888888"><br>
<br>
Oscar<br>
</font></span></blockquote></div><br></div>