Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

39
votes
7answers
13k views

Should you always favor xrange() over range()?

Why or why not?
6
votes
8answers
2k views

Python: range and xrange for 13-digit numbers?

range() and xrange() work for 10-digit-numbers. But how about 13-digit-numbers? I didn't find anything in the forum. Thanks in advance.
5
votes
5answers
4k views

`xrange(2**100)` -> OverflowError: long int too large to convert to int

xrange function doesn't work for large integers: >>> N = 10**100 >>> xrange(N) Traceback (most recent call last): ... OverflowError: long int too large to convert to int ...
3
votes
2answers
166 views

Accessing xrange internal structure

I'm trying to use ctypes to extract data from internal python structures. Namely, I'm trying to read the 4 fields in an xrange: typedef struct { PyObject_HEAD long start; long ...
2
votes
1answer
94 views

python unbounded xrange()

Is there an unbounded version of xrange that I can use, or do I have to define it myself? For example squares = (x*x for x in xrange(n)) Can only give me a generator for the squares up to (n-1)^2, ...
1
vote
4answers
139 views

random sample in python

I wanna speed this up: import random ndim = 50000 for i in xrange(ndim): random.sample([j for j in xrange(ndim) if j != i], 30000) I'm thinking about using NumPy but don't know how.
1
vote
4answers
693 views

Number Sequence in MySQL

In Python if I wanted a sequence from 0 - 9 (inclusive) I would use xrange(0,10) . Is there a way I can do this in MySQL?
0
votes
3answers
283 views

What is faster for loop using enumerate or for loop using xrange in Python?

What is faster, a for loop using enumerate or using xrange? EDIT: I have tested, and I just see minimal differences.