1
vote
3answers
75 views
Random int64 and float64 numbers
I'm trying to generate random 64-bit integer values for integers and floats using Numpy, within the entire range of valid values for that type. To generate random 32-bit floats, I …
16
votes
9answers
469 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), ran …
0
votes
4answers
103 views
Is there a random function in python that accepts variables?
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, randint will not accept a variable. …
0
votes
2answers
90 views
Stochastic calculus library in python
Hello,
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 diffu …
0
votes
1answer
116 views
Cannot shuffle list in Python.
This is my list:
biglist = [ {'title':'U2','link':'u2.com'}, {'title':'beatles','link':'beatles.com'} ]
print random.shuffle(biglist)
that doesn't work! It returns none.
0
votes
4answers
127 views
Does anyone know a way to scramble the elements in a list?
thelist = ['a','b','c','d']
What's the best way to scramble them in Python?
1
vote
6answers
207 views
Generate random UTF-8 string in Python
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 …
3
votes
1answer
205 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 …
0
votes
5answers
319 views
Generating random sentences from custom text in Python’s NLTK?
I'm having trouble with the NLTK under Python, specifically the .generate() method.
generate(self, length=100)
Print random text, generated using a trigram language model. …
8
votes
6answers
708 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 ke …
5
votes
2answers
129 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?
2
votes
3answers
136 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 …
1
vote
5answers
181 views
Can anyone explain this strange python turtle occurance?
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 …
-2
votes
7answers
276 views
How can I generate a unique ID in Python?
I need to generate a unique ID based on a random value.
1
vote
3answers
364 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?
