xrange is a Python function that, unlike the traditional 'range' function, creates an iterator object rather than a list.
3
votes
3answers
48 views
Generationg a list from user-input dynamically
As the title says, I'm processing some command-line options to create a list from user input, like this: "3,28,2". This is what I got so far:
>>> rR = "3,28,2"
>>> rR = ...
1
vote
1answer
59 views
Iterating in a closed range [a, b] in python
I want to iterate over a closed range of integers [a, b] in python, ie. iterating from a to b including both a and b.
I know the following way of doing it:
for i in range(a, b+1):
...
0
votes
3answers
251 views
Python3 xrange lack hurts
Recently I started using Python3 and it's lack of xrange hurts.
Simple example:
1) Python2:
from time import time as t
def count():
st = t()
[x for x in xrange(10000000) if x%4 == 0]
et = t()
...
3
votes
2answers
96 views
Portable, memory efficient range() for Python 2.x and Python 3.x
I am aware of the downsides of range in Python 2.x (it creates a list which is inefficient for large ranges) and it's faster iterator counterpart xrange. In Python 3.x however, range is an iterator ...
-2
votes
2answers
88 views
How to fix“ xrange() arg 3 must not be zero” error in python using parallel programming?
import time
from multiprocessing import Process, Pool
import sys, os, inspect
import urllib
import re
index ={}
graph={}
# Common words that we don't want to be part of the index
...
1
vote
0answers
381 views
Core plot : how to change plotSpace.xRange dynamically when device orientation change?
I've got an iOS app whith many charts. I would like to modify the xRange value when the charts is displayed in landscape mode but I can't have Core Plot doing this.
I tried to totally recreate the ...
1
vote
1answer
1k views
changing default x range in histogram matplotlib
I would like to change the default x range for the histogram plot. The range of the data is from 7 to 12. However, by default the histogram starts right at 7 and ends at 13. I want it to start at 6.5 ...
0
votes
4answers
135 views
xrange generating strings? I don't get it
For some reason, the x variable in the first for... loop changes from int to str after a single iteration through the code. I'm baffled as to why that must be, but each time I run this script, my set ...
0
votes
2answers
138 views
Increment on certain condition with xrange()
A very short and probably easy to answer question for the ones with more programming experience. I want to increment my counter by one if a certain condition is met. I use xrange() in my for-loop. Can ...
26
votes
3answers
430 views
why is xrange able to go back to beginning in Python?
I've encountered this code from Most pythonic way of counting matching elements in something iterable
r = xrange(1, 10)
print sum(1 for v in r if v % 2 == 0) # 4
print sum(1 for v in r if v % 3 == 0) ...
2
votes
3answers
197 views
PYTHON : Simple random generation driving if/else
new to programmation, im learning and here is probably a very simple problem for you guy.
import random
def run_stair_yes():
print "\nRunning in stairs is very dangerous!"
print ...
1
vote
1answer
117 views
gnuplot: plot data from one month ago to now
everyone.
I have some data which periodically updated. For example:
1330347541 79 100 6 163 38
1330349341 80 103 6 165 38
1330351141 80 104 6 166 40
1330352941 80 104 6 166 40
1330354741 81 104 8 ...
1
vote
3answers
829 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.
8
votes
1answer
703 views
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 ...
0
votes
3answers
713 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.
1
vote
4answers
937 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?
9
votes
8answers
5k views
range and xrange for 13-digit numbers in Python?
range() and xrange() work for 10-digit-numbers. But how about 13-digit-numbers? I didn't find anything in the forum.
4
votes
2answers
212 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 ...
10
votes
5answers
7k 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
...
121
votes
9answers
44k views