Hacker News new | ask | show | jobs
by dysan819 4088 days ago
in python

   for i in range(100):
       print(100 - i)
(there is no 'for (int i=0;' in python, but this analogous.)
1 comments

    print [i for i in reversed(range(101))]
Why reversed range? Range is fully capable of descending [1]

You also missed the point of the exercise: start at 0 in your index, but count backward from 100 in output. So the map is 0->100, 1 -> 99, ..., 99 -> 1, 100 -> 0

[1] https://docs.python.org/2/library/functions.html#range

Soooo, I won't get the job?