You were bothered yet with function xrange ? :) I suggest to replace it. --------------------------------------------- for i in xrange(100): pass vs. for i in int[:100]: pass --------------------------------------------- --------------------------------------------- for i in xrange(1000, 1020): pass vs. for i in int[1000:1020]: pass --------------------------------------------- --------------------------------------------- for i in xrange(200, 100, -2): pass vs. for i in int[200:100:-2]: pass ---------------------------------------------
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4