Tagged Questions

86
votes
1answer
19k views

How do I randomly select an item from a list using Python?

Let's say, as an example, I have the following list: foo = ['a', 'b', 'c', 'd', 'e'] What is the best way to retrieve an item at random from this list?
47
votes
4answers
19k views

python random string generation with upper case letters and digits

I want to generate string with N size. It should be made up of numbers and upper case english letters such as: 6U1S75 4Z4UKK U911K4 How can I achieve this in a pythonic way ? Thanks
34
votes
4answers
18k views

Random strings in Python 2.6 (Is this OK?)

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 ''.join(random.choice(string.letters) for i in ...
26
votes
9answers
2k 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)) ...
22
votes
12answers
3k views

Python: Random is barely random at all?

I did this to test the randomness of randint: >>> from random import randint >>> >>> uniques = [] >>> for i in range(4500): # You can see I was optimistic. ... ...
21
votes
13answers
4k views

Generating non-repeating random numbers in Python

Ok this is one of those trickier than it sounds questions so I'm turning to stack overflow because I can't think of a good answer. Here is what I want: I need Python to generate a simple a list of ...
21
votes
8answers
6k views

Random Python dictionary key, weighted by values

I have a dictionary where each key has 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 length of ...
20
votes
3answers
15k 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 ...
15
votes
4answers
7k views

Weighted random selection with and without replacement

Recently I needed to do weighted random selection of elements from a list, both with and without replacement. While there are well known and good algorithms for unweighted selection, and some for ...
14
votes
4answers
8k 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 ...
12
votes
6answers
297 views

Generating random numbers under very specific constraints

I am faced with the following programming problem. I need to generate n (a, b) tuples for which the sum of all a's is a given A and sum of all b's is a given B and for each tuple the ratio of a / b is ...
12
votes
5answers
924 views

Generate multiple random numbers to equal a value in python

So here is the deal: I want to (for example) generate 4 pseudo-random numbers, that when added together would equal 40. How could this be dome in python? I could generate a random number 1-40, then ...
12
votes
4answers
2k views

Fastest Way to generate 1,000,000+ random numbers in python

I am currently writing an app in python that needs to generate large amount of random numbers, FAST. Currently I have a scheme going that uses numpy to generate all of the numbers in a giant batch ...
12
votes
4answers
880 views

Stochastic calculus library in python

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 ...
11
votes
10answers
1k views

selection based on percentage weighting

I have a set of values, and an associated percentage for each: a: 70% chance b: 20% chance c: 10% chance I want to select a value (a, b, c) based on the percentage chance given. how do I approach ...
10
votes
7answers
270 views

How to randomly delete a number of lines from a big file?

I have a big text file of 13 GB with 158,609,739 lines and I want to randomly select 155,000,000 lines. I have tried to scramble the file and then cut the 155000000 first lines, but it's seem that my ...
10
votes
4answers
328 views

Get random sample from list while maintaining ordering of items?

I have a sorted list, let say: (its not really just numbers, its a list of objects that are sorted with a complicated time consuming algorithm) mylist = [ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 ,9 , 10 ] ...
10
votes
3answers
578 views

Could random.randint(1,10) ever return 11?

When researching for this question and reading the sourcecode in random.py, I started wondering whether randrange and randint really behave as "advertised". I am very much inclined to believe so, but ...
9
votes
3answers
160 views

An efficient way of making a large random bytearray

I need to create a large bytearry of a specific size but the size is not known prior to run time. The bytes need to be fairly random. The bytearray size may be as small as a few KBs but as large as ...
9
votes
4answers
349 views

Can Python's set absence of ordering be considered random order?

I'd like to know if the absence of element ordering of the Python's built-in set structure is "random enough". For instance, taking the iterator of a set, can it be considered a shuffled view of its ...
9
votes
5answers
1k views

random.choice not random

I'm using Python 2.5 on Linux, in multiple parallel FCGI processes. I use chars = string.ascii_letters + string.digits cookie = ''.join([random.choice(chars) for x in range(32)]) to ...
9
votes
9answers
8k views

Generate a random date between two other dates

How would I generate a random date that has to be between two other given dates? The functions signature should something like this- randomDate("1/1/2008 1:30 PM", "1/1/2009 4:50 AM", 0.34) ...
9
votes
12answers
6k 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 ...
9
votes
4answers
3k 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 ...
8
votes
2answers
446 views

differences between numpy.random and random.random in Python

I have a big script and I am new in Python. I inspired myself in other people's code so I ended up using the numpy.random module for some things (for example for creating an array of random numbers ...
8
votes
3answers
712 views

Get a random boolean in python?

I am looking for the best way (fast and elegant) to get a random boolean in python (flip a coin). For the moment I am using random.randint(0, 1) or random.getrandbits(1). Are there better choices ...
8
votes
2answers
527 views

Will python SystemRandom / os.urandom always have enough entropy for good crypto

I have a password generator: import random, string def gen_pass(): foo = random.SystemRandom() length = 64 chars = string.letters + string.digits return ''.join(foo.choice(chars) for ...
8
votes
1answer
3k 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', ...
8
votes
3answers
6k views

How do I select a random element from an array in Python?

The first examples that I googled didn't work. This should be trivial, right?
7
votes
2answers
593 views

Consistenly create same random numpy array

I am waiting for another developer to finish a piece of code that will return an np array of shape (100,2000) with values of either -1,0, or 1. In the meantime, I want to randomly create a array of ...
7
votes
4answers
1k views

Python: why does `random.randint(a, b)` return a range inclusive of `b`?

It has always seemed strange to me that random.randint(a, b) would return an integer in the range [a, b], instead of [a, b-1] like range(...). Is there any reason for this apparent inconsistency?
7
votes
2answers
4k views

Generating random text strings of a given pattern

I need to generate random text strings of a particular format. Would like some ideas so that I can code it up in Python. The format is <8 digit number><15 character string>.
6
votes
2answers
78 views

Pythons fastest way of randomising case of a string

I want to randomise the case of a string, heres what I have: word="This is a MixeD cAse stRing" word_cap='' for x in word: if random.randint(0,1): word_cap += x.upper() ...
6
votes
5answers
155 views

How to make a random but partial shuffle in Python?

Instead of a complete shuffle, I am looking for a partial shuffle function in python. Example : "string" must give rise to "stnrig", but not "nrsgit" It would be better if I can define a specific ...
6
votes
3answers
117 views

Very fast sampling from a set with fixed number of elements in python

I need to sample uniformly at random a number from a set with fixed size, do some calculation, and put the new number back into the set. (The number samples needed is very large) I've tried to store ...
6
votes
1answer
133 views

Generate in flight string from [A-z]

I want to know what is a simplest way to write method which generates me number from 1 to 50, and then depends of generated number returns me string like: Abcdef if generated number is 6 Abcdefghi if ...
6
votes
3answers
166 views

Python Random Slice Idiom

Is there a pythonic way to slice a sequence type such that the returned slice is of random length and in random order? For example, something like: >>> l=["a","b","c","d","e"] >>> ...
6
votes
2answers
458 views

How to get a random number between a float range? (Python)

randrange(start, stop) only takes integer arguments... So how would I get a random number between two float values?
6
votes
1answer
159 views

Generating natural schedule for a sports league

I'm looking for an algorithm to generate a schedule for a set of teams. For example, imagine a sports season in which each team plays each other, one time as home team and the other as a visitor team ...
6
votes
2answers
356 views

Python list does not shuffle in a loop

I'm trying to create an randomized list of keys by iterating: import random keys = ['1', '2', '3', '4', '5'] random.shuffle(keys) print keys This works perfect. However, if I put it in a loop and ...
6
votes
4answers
310 views

why this python program is not working?

I have started to learn python. I wrote a very simple program. #!/usr/bin/env python import random x = random.uniform(-1, 1) print str(x) I run this from command prompt. python random.py It ...
6
votes
2answers
890 views

python random.shuffle's randomness

Following is from python website, about random.shuffle(x[, random]) Shuffle the sequence x in place. The optional argument random is a 0-argument function returning a random float in [0.0, ...
6
votes
2answers
626 views

Maximal Length of List to Shuffle with Python random.shuffle?

I have a list which I shuffle with the Python built in shuffle function (random.shuffle) However, the Python reference states: Note that for even rather small len(x), the total number of ...
6
votes
3answers
1k views

python random.random()

Does python's random.random() ever return 1.0 or it only returns up until 0.9999..?
6
votes
2answers
526 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?
5
votes
3answers
153 views

Numpy: How to randomly split/select an matrix into n-different matrices

I have a numpy matrix with shape of (4601, 58). I want to split the matrix randomly as per 60%, 20%, 20% split based on number of rows This is for Machine Learning task I need Is there a ...
5
votes
3answers
100 views

random.shuffle Randomness

I am trying to write a genetic algorithm for homework to solve the travelling salesman problem. One of the mutation functions that I'm trying is to use random.shuffle on the tour. When I read the ...
5
votes
2answers
57 views

Reproducibility of python pseudo-random numbers across systems and versions?

I need to generate a controlled sequence of pseudo-random numbers, given an initial parameter. For that I'm using the standard python random generator, seeded by this parameter. I'd like to make sure ...
5
votes
1answer
159 views

Efficient way to generate and use millions of random numbers in Python

I'm in the process of working on programming project that involves some pretty extensive Monte Carlo simulation in Python, and as such the generation of a tremendous number of random numbers. Very ...
5
votes
5answers
115 views

How to compare values within an array in Python - find out whether 2 values are the same

I basically have an array of 50 integers, and I need to find out whether any of the 50 integers are equal, and if they are, I need to carry out an action. How would I go about doing this? As far as ...

1 2 3 4 5 6