Tagged Questions

16
votes
9answers
506 views

How to generate random ‘greenish’ colors

Anyone have any suggestions on how to make randomized colors that are all greenish? Right now I'm generating the colors by this: color = (randint(100, 200), randint(120, 255), randint(100, 200)) …
9
votes
6answers
861 views

Random Python dictionary key, weighted by values

hello, I have a dictionary where each key had a list of variable length, eg: d = { 'a': [1, 3, 2], 'b': [6], 'c': [0, 0] } Is there a clean way to get a random dictionary key, weighted by the …
6
votes
4answers
567 views

How do I simulate flip of biased coin in python?

In unbiased coin flip H or T occurs 50% of times. But I want to simulate coin which gives H with probability 'p' and T with probability '(1-p)'. something like this: def flip(p): '''this …
5
votes
2answers
141 views

Randomness in Jython

When using (pseudo) random numbers in Jython, would it be more efficient to use the Python random module or Java's random class?
4
votes
11answers
1k views

Probability distribution in Python

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 …
4
votes
4answers
448 views

random Decimal in python

How can I get a random decimal.Decimal? it appears that the random module only returns floats which are a pita to convert to Decimals.
3
votes
1answer
231 views

How do I pick 2 random items from a Python set?

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: fruits = set(['apple', 'orange', 'watermelon', …
3
votes
2answers
502 views

Shuffling a list of objects in python

I have a list of objects in python and I want to shuffle them. I thought I could use the random.shuffle method, but this seems to fail when the list is of objects. Is there a method for shuffling …
3
votes
11answers
332 views

When using random, which form returns an equal 50% chance?

I'm guessing that most built in random generators return something like this: [0.0, 1.0) so if I would like a 50% chance would I use something like this: if random() < .5 or something like: …
3
votes
2answers
290 views

Random name generator strategy - help me improve it

I have a small project I am doing in Python using web.py. It's a name generator, using 4 "parts" of a name (firstname, middlename, anothername, surname). Each part of the name is a collection of …
2
votes
5answers
103 views

use random functions (python)

Hi, I wonder if we can do that in python, let's suppose we have 3 differents functions to processing datas like this: def main(): def process(data): ..... def process1(data): ..... …
2
votes
3answers
155 views

Seeding random in django

In a view in django I use random.random(). How often do I have to call random.seed()? One time for every request? One time for every season? One time while the webserver is running?
2
votes
3answers
251 views

Best way to randomize a list of strings in Python

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 …
2
votes
2answers
823 views

python random.random() causes “’module’ object is not callable” when used in custom template tag

If I start python from the command line and type: import random print "Random: " + str(random.random()) It prints me a random number (Expected, excellent). If I include the above-two lines in my …
2
votes
3answers
478 views

Python’s random: What happens if I don’t use seed(someValue)?

a)In this case does the random number generator uses the system's clock (making the seed change) on each run? b)Is the seed used to generate the pseudo-random values of expovariate(lambda)?

1 2 3 next
15 30 50 per page