active questions tagged random+python - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T15:01:16Zhttp://stackoverflow.com/feeds/tag/random+pythonhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1805265/how-to-fix-value-produced-by-random0How to fix value produced by Random?unknown (google)2009-11-26T19:15:22Z2009-11-26T19:53:44Z
<p>Hi all, I got an issue which is, in my code,anyone can help will be great.
this is the example code.</p>
<pre><code>from random import *
from numpy import *
r=array([uniform(-R,R),uniform(-R,R),uniform(-R,R)])
def Ft(r):
for i in range(3):
do something here, call r
return something
</code></pre>
<p>however I found that in python shell, every time I run function Ft, it gives me different
result.....seems like within the function, in each iterate of the for loop,call r once, it gives random numbers once... but not fix the initial random number when I call the function....how can I fix it?
how about use b=copy(r) then call b in the Ft function?
Thanks</p>
http://stackoverflow.com/questions/1584584/stochastic-calculus-library-in-python1Stochastic calculus library in pythonLeMiz2009-10-18T10:53:07Z2009-11-25T15:00:04Z
<p>Hello, </p>
<p>I am looking for a python library that would allow me to compute stochastic calculus stuff, like the (conditional) expectation of a random process I would define the diffusion. I had a look a at simpy (simpy.sourceforge.net), but it does not seem to cover my needs.</p>
<p>This is for quick prototyping and experimentation.
In java, I used with some success the (now inactive) <a href="http://martingale.berlios.de/Martingale.html" rel="nofollow">http://martingale.berlios.de/Martingale.html</a> library.</p>
<p>The problem is not difficult in itself, but there is a lot non trivial, boilerplate things to do (efficient memory use, variable reduction techniques, and so on).</p>
<p>Ideally, I would be able to write something like this (just illustrative):</p>
<pre>
def my_diffusion(t, dt, past_values, world, **kwargs):
W1, W2 = world.correlated_brownians_pair(correlation=kwargs['rho'])
X = past_values[-1]
sigma_1 = kwargs['sigma1']
sigma_2 = kwargs['sigma2']
dX = kwargs['mu'] * X * dt + sigma_1 * W1 * X * math.sqrt(dt) + sigma_2 * W2 * X * X * math.sqrt(dt)
return X + dX
X = RandomProcess(diffusion=my_diffusion, x0 = 1.0)
print X.expectancy(T=252, dt = 1./252., N_simul= 50000, world=World(random_generator='sobol'), sigma1 = 0.3, sigma2 = 0.01, rho=-0.1)
</pre>
<p>Does someone knows of something else than reimplementing it in numpy for example ?</p>
http://stackoverflow.com/questions/1750480/use-random-functions-python2use random functions (python)n00bie2009-11-17T17:33:33Z2009-11-17T18:07:01Z
<p>Hi,</p>
<p>I wonder if we can do that in python, let's suppose we have 3 differents functions to processing datas
like this:</p>
<pre><code>def main():
def process(data):
.....
def process1(data):
.....
def process2(data):
.....
def run():
test = choice([process,process1,process2])
test(data)
run()
main()
</code></pre>
<p>Can we choice one random function to process the data ?
If yes, is this a good way to do so ?</p>
<p>Thanks !</p>
http://stackoverflow.com/questions/1749827/replace-or-remove-one-null-python0replace or remove one null (python)n00bie2009-11-17T15:54:22Z2009-11-17T16:41:22Z
<p>Hi Everyones,</p>
<p>I would like to remove one null byte in a string, and sometime replace it with another char.
Like that :</p>
<p>string = "41 00 36 00 36 00 00 00 57 00 46 00 42 00 41 00 61 00 62 00 73 00 20 00 36 00"</p>
<p>i was thinking about using random and replace, but replace always start by the first one:</p>
<pre><code>replace("00","B",1)
</code></pre>
<p>So it's not random.</p>
<p>Any help will be appreciated !</p>
<p>EDIT: i meant null by 00, and i made a mistake:</p>
<p>string = "41 00 36 00 36 00 00 00 57 00 46 00 42 00 41 00 61 00 62 00 73 00 20 00 36 00"</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1731346/how-to-get-two-random-records-with-django1How to get two random records with DjangoMatt McCormick2009-11-13T19:27:42Z2009-11-13T19:31:24Z
<p>How do I get two distinct random records using Django? I've seen questions about how to get one but I need to get two random records and they must differ.</p>
http://stackoverflow.com/questions/1703012/what-is-suggested-seed-value-to-use-with-random-seed0What is suggested seed value to use with random.seed()?AJ2009-11-09T18:56:16Z2009-11-09T19:53:23Z
<p>Simple enough question:</p>
<p>I'm using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this default to the current time, but this is not ideal. It seems like a string literal constant (similar to a password) would also not be ideal/strong</p>
<p>Suggestions?</p>
<p>Thanks,
-aj</p>
<p><hr></p>
<p>UPDATE:</p>
<p>The reason I am generating random integers is for generation of test data. The numbers do not need to be reproducable.</p>
http://stackoverflow.com/questions/1262955/how-do-i-pick-2-random-items-from-a-python-set3How do I pick 2 random items from a Python set?Thierry Lam2009-08-11T21:12:37Z2009-11-05T07:06:15Z
<p>I currently have a Python set of n size where n >= 0. Is there a quick 1 or 2 lines Python solution to do it? For example, the set will look like:</p>
<pre><code>fruits = set(['apple', 'orange', 'watermelon', 'grape'])
</code></pre>
<p>The goal is to pick 2 random items from the above and it's possible that the above set can contain 0, 1 or more items. The only way I can think of doing the above is to convert the set to a list(mutable) from where I can access 2 random unique index within the length of the set.</p>
http://stackoverflow.com/questions/1658808/random-int64-and-float64-numbers1Random int64 and float64 numbersMorgoth2009-11-01T23:42:29Z2009-11-02T00:43:32Z
<p>I'm trying to generate random 64-bit integer values for integers and floats using Numpy, <strong>within the entire range of valid values for that type</strong>. To generate random 32-bit floats, I can use:</p>
<pre><code>In [2]: np.random.uniform(low=np.finfo(np.float32).min,high=np.finfo(np.float32).max,size=10)
Out[2]:
array([ 1.47351436e+37, 9.93620693e+37, 2.22893053e+38,
-3.33828977e+38, 1.08247781e+37, -8.37481260e+37,
2.64176554e+38, -2.72207226e+37, 2.54790459e+38,
-2.47883866e+38])
</code></pre>
<p>but if I try and use this for 64-bit numbers, I get</p>
<pre><code>In [3]: np.random.uniform(low=np.finfo(np.float64).min,high=np.finfo(np.float64).max,size=10)
Out[3]: array([ Inf, Inf, Inf, Inf, Inf, Inf, Inf, Inf, Inf, Inf])
</code></pre>
<p>Similarly, for integers, I can successfully generate random 32-bit integers:</p>
<pre><code>In [4]: np.random.random_integers(np.iinfo(np.int32).min,high=np.iinfo(np.int32).max,size=10)
Out[4]:
array([-1506183689, 662982379, -1616890435, -1519456789, 1489753527,
-604311122, 2034533014, 449680073, -444302414, -1924170329])
</code></pre>
<p>but am unsuccessful for 64-bit integers:</p>
<pre><code>In [5]: np.random.random_integers(np.iinfo(np.int64).min,high=np.iinfo(np.int64).max,size=10)
---------------------------------------------------------------------------
OverflowError Traceback (most recent call last)
/Users/tom/tmp/<ipython console> in <module>()
/Library/Python/2.6/site-packages/numpy/random/mtrand.so in mtrand.RandomState.random_integers (numpy/random/mtrand/mtrand.c:6640)()
/Library/Python/2.6/site-packages/numpy/random/mtrand.so in mtrand.RandomState.randint (numpy/random/mtrand/mtrand.c:5813)()
OverflowError: long int too large to convert to int
</code></pre>
<p>Is this expected behavior, or should I report these as bugs in Numpy?</p>
http://stackoverflow.com/questions/1586147/how-to-generate-random-greenish-colors16How to generate random 'greenish' colorsEcho2009-10-18T22:00:37Z2009-10-19T20:19:33Z
<p>Anyone have any suggestions on how to make randomized colors that are all greenish? Right now I'm generating the colors by this:</p>
<pre><code>color = (randint(100, 200), randint(120, 255), randint(100, 200))
</code></pre>
<p>That mostly works, but I get brownish colors a lot. </p>
http://stackoverflow.com/questions/1579741/is-there-a-random-function-in-python-that-accepts-variables0Is there a random function in python that accepts variables?Brian Zylstra2009-10-16T18:47:48Z2009-10-16T20:24:40Z
<p>I'm attempting to create a simple dice roller, and I want it to create a random number between 1 and the number of sides the dice has. However, <code>randint</code> will not accept a variable. Is there a way to do what I'm trying to do?</p>
<p>code below:</p>
<pre><code>import random
a=0
final=0
working=0
sides = input("How many dice do you want to roll?")
while a<=sides:
a=a+1
working=random.randint(1, 4)
final=final+working
print "Your total is:", final
</code></pre>
http://stackoverflow.com/questions/1530161/cannot-shuffle-list-in-python0Cannot shuffle list in Python.alex2009-10-07T07:53:55Z2009-10-07T08:02:40Z
<p>This is my list:</p>
<pre><code>biglist = [ {'title':'U2','link':'u2.com'}, {'title':'beatles','link':'beatles.com'} ]
print random.shuffle(biglist)
</code></pre>
<p>that doesn't work! It returns none.</p>
http://stackoverflow.com/questions/1524160/does-anyone-know-a-way-to-scramble-the-elements-in-a-list0Does anyone know a way to scramble the elements in a list?alex2009-10-06T07:55:21Z2009-10-06T08:04:05Z
<pre><code>thelist = ['a','b','c','d']
</code></pre>
<p>What's the best way to scramble them in Python?</p>
http://stackoverflow.com/questions/1477294/generate-random-utf-8-string-in-python1Generate random UTF-8 string in Pythonl0b02009-09-25T13:29:53Z2009-10-02T04:09:14Z
<p>I'd like to test the Unicode handling of my code. Is there anything I can put in random.choice() to select from the entire Unicode range, preferably not an external module? Neither Google nor StackOverflow seems to have an answer.</p>
<p>Edit: It looks like this is more complex than expected, so I'll rephrase the question - Is the following code sufficient to generate all valid <a href="http://www.unicode.org/Public/UNIDATA/UCD.html#General%5FCategory%5FValues" rel="nofollow">non-control characters in Unicode</a>?</p>
<pre><code>unicode_glyphs = ''.join(
unichr(char)
for char in xrange(1114112) # 0x10ffff + 1
if unicodedata.category(unichr(char))[0] in ('LMNPSZ')
)
</code></pre>
http://stackoverflow.com/questions/1150144/generating-random-sentences-from-custom-text-in-pythons-nltk0Generating random sentences from custom text in Python's NLTK?James McMahon2009-07-19T15:41:58Z2009-09-26T15:58:38Z
<p>I'm having trouble with the NLTK under Python, specifically the .generate() method.</p>
<blockquote>
<p>generate(self, length=100)</p>
<p>Print random text, generated using a trigram language model.</p>
<p>Parameters:</p>
<pre><code> * length (int) - The length of text to generate (default=100)
</code></pre>
</blockquote>
<p>Here is a simplified version of what I am attempting.</p>
<pre><code>import nltk
words = 'The quick brown fox jumps over the lazy dog'
tokens = nltk.word_tokenize(words)
text = nltk.Text(tokens)
print text.generate(3)
</code></pre>
<p>This will <em>always</em> generate</p>
<pre><code>Building ngram index...
The quick brown
None
</code></pre>
<p>As opposed to building a random phrase out of the words.</p>
<p>Here is my output when I do</p>
<pre><code>print text.generate()
Building ngram index...
The quick brown fox jumps over the lazy dog fox jumps over the lazy
dog dog The quick brown fox jumps over the lazy dog dog brown fox
jumps over the lazy dog over the lazy dog The quick brown fox jumps
over the lazy dog fox jumps over the lazy dog lazy dog The quick brown
fox jumps over the lazy dog the lazy dog The quick brown fox jumps
over the lazy dog jumps over the lazy dog over the lazy dog brown fox
jumps over the lazy dog quick brown fox jumps over the lazy dog The
None
</code></pre>
<p>Again starting out with the same text, but then varying it. I've also tried using the first chapter from Orwell's 1984. Again that <strong>always</strong> starts with the first 3 tokens (one of which is a space in this case) and <em>then</em> goes on to randomly generate text.</p>
<p>What am I doing wrong here?</p>
http://stackoverflow.com/questions/1224944/can-anyone-explain-this-strange-python-turtle-occurance1Can anyone explain this strange python turtle occurance?Ryan2009-08-03T22:31:29Z2009-08-04T21:38:46Z
<p>If you don't know, python turtle is an application for helping people learn python.
You are given a python interpreter and an onscreen turtle that you can pass directions to using python. </p>
<p>go(10) will cause the turtle to move 10 pixels
turn(10) will cause it to turn 10 degrees clockwise</p>
<p>now look at this</p>
<p><img src="http://i28.tinypic.com/29bzoet.jpg" alt="alt text" /></p>
<p>code:</p>
<pre><code>import random
while(1):
r = random.randint(1,10)
go (r)
r = random.randint(-90,90)
turn (r)
</code></pre>
<p>can anyone explain this behavior? Notice the straight line. Is there something wrong with pythons random module?</p>
http://stackoverflow.com/questions/1210458/how-can-i-generate-a-unique-id-in-python-2How can I generate a unique ID in Python?Ryan2009-07-31T02:51:44Z2009-08-03T04:45:44Z
<p>I need to generate a unique ID based on a random value.</p>
http://stackoverflow.com/questions/1173520/randomness-in-jython5Randomness in Jythonkzh2009-07-23T18:10:07Z2009-07-23T18:28:41Z
<p>When using (pseudo) random numbers in Jython, would it be more efficient to use the Python random module or Java's random class?</p>
http://stackoverflow.com/questions/1156511/seeding-random-in-django2Seeding random in djangoChristian2009-07-20T23:26:16Z2009-07-21T07:32:08Z
<p>In a view in django I use <code>random.random()</code>. How often do I have to call <code>random.seed()</code>?
One time for every request?
One time for every season?
One time while the webserver is running?</p>
http://stackoverflow.com/questions/1056151/random-python-dictionary-key-weighted-by-values9Random Python dictionary key, weighted by valuesRichard2009-06-29T00:46:06Z2009-07-17T18:31:58Z
<p>hello,</p>
<p>I have a dictionary where each key had a list of variable length, eg:</p>
<pre><code>d = {
'a': [1, 3, 2],
'b': [6],
'c': [0, 0]
}
</code></pre>
<p>Is there a clean way to get a random dictionary key, weighted by the length of its value?
random.choice(d.keys()) will weight the keys equally, but in the case above I want 'a' to be returned roughly half the time.</p>
<p>thanks!</p>
http://stackoverflow.com/questions/1080393/random-list-with-rules0Random list with rulesmandroid2009-07-03T18:23:54Z2009-07-03T19:03:21Z
<p>I'm trying to create a list of tasks that I've read from some text files and put them into lists. I want to create a master list of what I'm going to do through the day however I've got a few rules for this. </p>
<p>One list has separate daily tasks that don't depend on the order they are completed. I call this list 'daily'. I've got another list of tasks for my projects, but these do depend on the order completed. This list is called 'projects'. I have a third list of things that must be done at the end of the day. I call it 'endofday'.</p>
<p>So here are the basic rules.</p>
<p>A list of randomized tasks where daily tasks can be performed in any order, where project tasks may be randomly inserted into the main list at any position but must stay in their original order relative to each other, and end of day tasks appended to the main list.</p>
<p>I understand how to get a random number from random.randint(), appending to lists, reading files and all that......but the logic is giving me a case of 'hurty brain'. Anyone want to take a crack at this?</p>
<p>EDIT:</p>
<p>Ok I solved it on my own, but at least asking the question got me to picture it in my head. Here's what I did.</p>
<pre><code>random.shuffle(daily)
while projects:
daily.insert(random.randint(0,len(daily)), projects.pop(0))
random.shuffle(endofday)
daily.extend(endofday)
for x in daily: print x
</code></pre>
<p>Thanks for the answers, I'll give ya guys some kudos anyways!</p>
<p>EDIT AGAIN:</p>
<p>Crap I just realized that's not the right answer lol</p>
<p>LAST EDIT I SWEAR:</p>
<pre><code>position = []
random.shuffle(daily)
for x in range(len(projects)):
position.append(random.randint(0,len(daily)+x))
position.sort()
while projects:
daily.insert(position.pop(0), projects.pop(0))
random.shuffle(endofday)
daily.extend(endofday)
for x in daily: print x
</code></pre>
<p>I LIED:</p>
<p>I just thought about what happens when position has duplicate values and lo and behold my first test returned 1,3,2,4 for my projects. I'm going to suck it up and use the answerer's solution lol</p>
<p>OR NOT:</p>
<pre><code>position = []
random.shuffle(daily)
for x in range(len(projects)):
while 1:
pos = random.randint(0,len(daily)+x)
if pos not in position: break
position.append(pos)
position.sort()
while projects:
daily.insert(position.pop(0), projects.pop(0))
random.shuffle(endofday)
daily.extend(endofday)
for x in daily: print x
</code></pre>
http://stackoverflow.com/questions/1066827/object-attribute-in-random-list-not-accessible-in-python1Object Attribute in Random List Not Accessible in PythonNoah Clark2009-07-01T00:57:37Z2009-07-01T02:06:44Z
<p>Hello.</p>
<p>I'm working on my first object oriented bit of python and I have the following:</p>
<pre><code>#!/usr/bin/python
import random
class triangle:
# Angle A To Angle C Connects Side F
# Angle C to Angle B Connects Side D
# Angle B to Angle A Connects Side E
def __init__(self, a, b, c, d, e, f):
self.a = a
self.b = b
self.c = c
self.d = d
self.e = e
self.f = f
#def solver:
#pass
#initialize Triangle
myTri = triangle(0,0,0,0,0,0)
#Pick Three Random Angles or Sides to Generate Values For
sample = random.sample([myTri.a, myTri.b, myTri.c, myTri.d, myTri.e, myTri.f], 3)
#Sets the three randomly picked variables to a Random Number
sample[0] = random.randint(1, 100)
sample[1] = random.randint(1, 100)
sample[2] = random.randint(1, 100)
</code></pre>
<p>How do I pass myTri.a, for example to random.randint. It is passing the value of '0' which it initialized. I want to be able to assign a random value to three of the .a-.f attributes of myTri. What am I missing?</p>
http://stackoverflow.com/questions/1058712/how-do-i-select-a-random-element-from-an-array-in-python1How do I select a random element from an array in Python?Hanno Fietz2009-06-29T14:42:22Z2009-06-29T14:55:40Z
<p>The first examples that I googled didn't work. This should be trivial, right?</p>
http://stackoverflow.com/questions/526255/probability-distribution-in-python4Probability distribution in PythonNicholas Leonard2009-02-08T19:52:22Z2009-06-27T21:12:33Z
<p>I have a bunch of keys that each have an unlikeliness variable. I want to randomly choose one of these keys, yet I want it to be more unlikely for unlikely (key, values) to be chosen than a less unlikely (a more likely) object. I am wondering if you would have any suggestions, preferably an existing python module that I could use, else I will need to make it myself.</p>
<p>I have checked out the random module; it does not seem to provide this.</p>
<p>I have to make such choices many millions of times for 1000 different sets of objects each containing 2,455 objects. Each set will exchange objects among each other so the random chooser needs to be dynamic. With 1000 sets of 2,433 objects, that is 2,433 million objects; low memory consumption is crucial. And since these choices are not the bulk of the algorithm, I need this process to be quite fast; CPU-time is limited.</p>
<p>Thx </p>
<p>Update:</p>
<p>Ok, I tried to consider your suggestions wisely, but time is so limited... </p>
<p>I looked at the binary search tree approach and it seems too risky (complex and complicated). The other suggestions all resemble the ActiveState recipe. I took it and modified it a little in the hope of making more efficient:</p>
<pre><code>def windex(dict, sum, max):
'''an attempt to make a random.choose() function that makes
weighted choices accepts a dictionary with the item_key and
certainty_value as a pair like:
>>> x = [('one', 20), ('two', 2), ('three', 50)], the
maximum certainty value (max) and the sum of all certainties.'''
n = random.uniform(0, 1)
sum = max*len(list)-sum
for key, certainty in dict.iteritems():
weight = float(max-certainty)/sum
if n < weight:
break
n = n - weight
return key
</code></pre>
<p>I am hoping to get an efficiency gain from dynamically maintaining the sum of certainties and the maximum certainty. Any further suggestions are welcome. You guys saves me so much time and effort, while increasing my effectiveness, it is crazy. Thx! Thx! Thx!</p>
<p>Update2:</p>
<p>I decided to make it more efficient by letting it choose more choices at once. This will result in an acceptable loss in precision in my algo for it is dynamic in nature. Anyway, here is what I have now:</p>
<pre><code>def weightedChoices(dict, sum, max, choices=10):
'''an attempt to make a random.choose() function that makes
weighted choices accepts a dictionary with the item_key and
certainty_value as a pair like:
>>> x = [('one', 20), ('two', 2), ('three', 50)], the
maximum certainty value (max) and the sum of all certainties.'''
list = [random.uniform(0, 1) for i in range(choices)]
(n, list) = relavate(list.sort())
keys = []
sum = max*len(list)-sum
for key, certainty in dict.iteritems():
weight = float(max-certainty)/sum
if n < weight:
keys.append(key)
if list: (n, list) = relavate(list)
else: break
n = n - weight
return keys
def relavate(list):
min = list[0]
new = [l - min for l in list[1:]]
return (min, new)
</code></pre>
<p>I haven't tried it out yet. If you have any comments/suggestions, please do not hesitate. Thx!</p>
<p>Update3:</p>
<p>I have been working all day on a task-tailored version of Rex Logan's answer. Instead of a 2 arrays of objects and weights, it is actually a special dictionary class; which makes things quite complex since Rex's code generates a random index... I also coded a test case that kind of resembles what will happen in my algo (but I can't really know until I try!). The basic principle is: the more a key is randomly generated often, the more unlikely it will be generated again: </p>
<pre><code>import random, time
import psyco
psyco.full()
class ProbDict():
"""
Modified version of Rex Logans RandomObject class. The more a key is randomly
chosen, the more unlikely it will further be randomly chosen.
"""
def __init__(self,keys_weights_values={}):
self._kw=keys_weights_values
self._keys=self._kw.keys()
self._len=len(self._keys)
self._findSeniors()
self._effort = 0.15
self._fails = 0
def __iter__(self):
return self.next()
def __getitem__(self, key):
return self._kw[key]
def __setitem__(self, key, value):
self.append(key, value)
def __len__(self):
return self._len
def next(self):
key=self._key()
while key:
yield key
key = self._key()
def __contains__(self, key):
return key in self._kw
def items(self):
return self._kw.items()
def pop(self, key):
try:
(w, value) = self._kw.pop(key)
self._len -=1
if w == self._seniorW:
self._seniors -= 1
if not self._seniors:
#costly but unlikely:
self._findSeniors()
return [w, value]
except KeyError:
return None
def popitem(self):
return self.pop(self._key())
def values(self):
values = []
for key in self._keys:
try:
values.append(self._kw[key][1])
except KeyError:
pass
return values
def weights(self):
weights = []
for key in self._keys:
try:
weights.append(self._kw[key][0])
except KeyError:
pass
return weights
def keys(self, imperfect=False):
if imperfect: return self._keys
return self._kw.keys()
def append(self, key, value=None):
if key not in self._kw:
self._len +=1
self._kw[key] = [0, value]
self._keys.append(key)
else:
self._kw[key][1]=value
def _key(self):
for i in range(int(self._effort*self._len)):
ri=random.randint(0,self._len-1) #choose a random object
rx=random.uniform(0,self._seniorW)
rkey = self._keys[ri]
try:
w = self._kw[rkey][0]
if rx >= w: # test to see if that is the value we want
w += 1
self._warnSeniors(w)
self._kw[rkey][0] = w
return rkey
except KeyError:
self._keys.pop(ri)
# if you do not find one after 100 tries then just get a random one
self._fails += 1 #for confirming effectiveness only
for key in self._keys:
if key in self._kw:
w = self._kw[key][0] + 1
self._warnSeniors(w)
self._kw[key][0] = w
return key
return None
def _findSeniors(self):
'''this function finds the seniors, counts them and assess their age. It
is costly but unlikely.'''
seniorW = 0
seniors = 0
for w in self._kw.itervalues():
if w >= seniorW:
if w == seniorW:
seniors += 1
else:
seniorsW = w
seniors = 1
self._seniors = seniors
self._seniorW = seniorW
def _warnSeniors(self, w):
#a weight can only be incremented...good
if w >= self._seniorW:
if w == self._seniorW:
self._seniors+=1
else:
self._seniors = 1
self._seniorW = w
def test():
#test code
iterations = 200000
size = 2500
nextkey = size
pd = ProbDict(dict([(i,[0,i]) for i in xrange(size)]))
start = time.clock()
for i in xrange(iterations):
key=pd._key()
w=pd[key][0]
if random.randint(0,1+pd._seniorW-w):
#the heavier the object, the more unlikely it will be removed
pd.pop(key)
probAppend = float(500+(size-len(pd)))/1000
if random.uniform(0,1) < probAppend:
nextkey+=1
pd.append(nextkey)
print (time.clock()-start)*1000/iterations, "msecs / iteration with", pd._fails, "failures /", iterations, "iterations"
weights = pd.weights()
weights.sort()
print "avg weight:", float(sum(weights))/pd._len, max(weights), pd._seniorW, pd._seniors, len(pd), len(weights)
print weights
test()
</code></pre>
<p>Any comments are still welcome. @Darius: your binary trees are too complex and complicated for me; and I do not think its leafs can be removed efficiently... Thx all</p>
http://stackoverflow.com/questions/1022141/best-way-to-randomize-a-list-of-strings-in-python2Best way to randomize a list of strings in PythonRax Olgud2009-06-20T18:05:44Z2009-06-20T18:12:13Z
<p>I receive as input a list of strings and need to return a list with these same strings but in randomized order. I must allow for duplicates - same string may appear once or more in the input and must appear the same number of times in the output.</p>
<p>I see several "brute force" ways of doing that (using loops, god forbid), one of which I'm currently using. However, knowing Python there's probably a cool one-liner do get the job done, right?</p>
http://stackoverflow.com/questions/591253/when-using-random-which-form-returns-an-equal-50-chance3When using random, which form returns an equal 50% chance? Casey2009-02-26T16:15:37Z2009-06-19T21:08:18Z
<p>I'm guessing that most built in random generators return something like this:</p>
<pre><code>[0.0, 1.0)
</code></pre>
<p>so if I would like a 50% chance would I use something like this:</p>
<pre><code>if random() < .5
</code></pre>
<p>or something like:</p>
<pre><code>if random() <= .5
</code></pre>
<p>Thanks for the help.</p>
http://stackoverflow.com/questions/976882/shuffling-a-list-of-objects-in-python3Shuffling a list of objects in pythonutdiscant2009-06-10T16:56:59Z2009-06-10T17:08:50Z
<p>I have a list of objects in python and I want to shuffle them. I thought I could use the <code>random.shuffle</code> method, but this seems to fail when the list is of objects. Is there a method for shuffling object or another way around this?</p>
<pre><code>import random
class a:
foo = "bar"
a1 = a()
a2 = a()
b = [a1,a2]
print random.shuffle(b)
</code></pre>
<p>This will fail</p>
http://stackoverflow.com/questions/785058/random-strings-in-python-2-6-is-this-ok2Random strings in Python 2.6 (Is this OK?)mikelikespie2009-04-24T09:01:29Z2009-06-02T13:24:54Z
<p>I've been trying to find a more pythonic way of generating random string in python that can scale as well. Typically, I see something similar to</p>
<pre><code>''.join(random.choice(string.letters) for i in xrange(len))
</code></pre>
<p>It sucks if you want to generate long string.</p>
<p>I've been thinking about random.getrandombits for a while, and figuring out how to convert that to an array of bits, then hex encode that. Using python 2.6 I came across the bitarray object, which isn't documented. Somehow I got it to work, and it seems really fast.</p>
<p>It generates a 50mil random string on my notebook in just about 3 seconds.</p>
<pre><code>def rand1(leng):
nbits = leng * 6 + 1
bits = random.getrandbits(nbits)
uc = u"%0x" % bits
newlen = int(len(uc) / 2) * 2 # we have to make the string an even length
ba = bytearray.fromhex(uc[:newlen])
return base64.urlsafe_b64encode(str(ba))[:leng]
</code></pre>
<p><hr /></p>
<p><strong>edit</strong></p>
<p>heikogerlach pointed out that it was an odd number of characters causing the issue. New code added to make sure it always sent fromhex an even number of hex digits.</p>
<p>Still curious if there's a better way of doing this that's just as fast.</p>
http://stackoverflow.com/questions/701402/best-way-to-choose-a-random-file-from-a-directory1Best way to choose a random file from a directoryjhs2009-03-31T14:58:41Z2009-05-28T07:43:57Z
<p>What is the best way to choose a random file from a directory in Python?</p>
<p><em>Edit:</em> Here is what I am doing:</p>
<pre><code>import os
import random
import dircache
dir = 'some/directory'
filename = random.choice(dircache.listdir(dir))
path = os.path.join(dir, filename)
</code></pre>
<p>Is this particularly bad, or is there a particularly better way?</p>
http://stackoverflow.com/questions/874121/python-list-of-objects-with-random-attributes1Python list of objects with random attributesendtime2009-05-17T08:06:07Z2009-05-17T08:34:55Z
<p>(Edit: randrange is just random.randrange, I didn't write my own RNG)</p>
<p>I'm trying to create a list of instances of a class I defined. Here's the entire class (by request):</p>
<pre><code>from random import randrange
class Poly:
points = [0] * 8
fill = 'red'
alpha = 1.0
def __init__(self, width=100, height=100):
for i in range(0, 8, 2):
self.points[i] = randrange(width)
self.points[i+1] = randrange(height)
self.alpha = random()
return
</code></pre>
<p>Seems to work fine:</p>
<pre><code>>>> for i in range(5):
Poly().points
[28, 64, 93, 26, 15, 31, 44, 50]
[24, 14, 47, 14, 35, 17, 63, 62]
[99, 28, 90, 29, 56, 59, 57, 33]
[62, 56, 48, 28, 40, 73, 70, 99]
[99, 32, 27, 99, 42, 57, 86, 12]
</code></pre>
<p>But if I try to create a list of these objects, I get separate instances (different memory addresses) but they all have the same random values:</p>
<pre><code>>>> p = []
>>> for i in range(5):
p.append(Poly())
>>> p
[<gen_image.Poly instance at 0x02D773C8>, <gen_image.Poly instance at 0x02D77FD0>, <gen_image.Poly instance at 0x0321D030>, <gen_image.Poly instance at 0x02D51E40>, <gen_image.Poly instance at 0x02D51DA0>]
>>> for poly in p:
print poly.points
[75, 18, 5, 76, 6, 64, 95, 54]
[75, 18, 5, 76, 6, 64, 95, 54]
[75, 18, 5, 76, 6, 64, 95, 54]
[75, 18, 5, 76, 6, 64, 95, 54]
[75, 18, 5, 76, 6, 64, 95, 54]
</code></pre>
<p>What's going on here? And what's the right way to do what I'm trying to do?</p>
http://stackoverflow.com/questions/837916/python-random-random-causes-module-object-is-not-callable-when-used-in-cust2python random.random() causes "'module' object is not callable" when used in custom template tagkrys2009-05-08T01:55:26Z2009-05-08T03:39:10Z
<p>If I start python from the command line and type:</p>
<pre><code>import random
print "Random: " + str(random.random())
</code></pre>
<p>It prints me a random number (Expected, excellent). </p>
<p>If I include the above-two lines in my django application's models.py and start my django app with runserver I get the output on the command line showing me a random number (Great!)</p>
<p>If I take a custom tag which works perfectly fine otherwise, but I include </p>
<pre><code>import random
print "Random: " + str(random.random())
</code></pre>
<p>as the first 2 lines of the custom tag's .py file, I get an error whenever I try to open up a template which uses that custom tag:</p>
<pre><code>TypeError at /help/
'module' object is not callable
</code></pre>
<p>Please keep in mind that if I get rid of these two lines, my custom tag behaves as otherwise expected and no error is thrown. Unfortunately, I need some random behavior inside of my template tag. </p>
<p>The problem is if in a custom tag I do:</p>
<pre><code>import random
</code></pre>
<p>on a custom template tag, it imports </p>
<pre><code><module 'django.templatetags.random' from '[snip path]'>
</code></pre>
<p>and not </p>
<pre><code><module 'random' from 'C:\\Program Files\\Python26\\lib\\random.pyc'>
</code></pre>
<p>as is normally imported from everywhere else</p>
<p>Django template library has a filter called random, and somehow it is getting priority above the system's random.</p>
<p>Can anyone recommend how to explicitly import the proper python random?</p>