0
votes
2answers
100 views
How to fix value produced by Random?
Hi all, I got an issue which is, in my code,anyone can help will be great.
this is the example code.
from random import *
from numpy import *
r=array([uniform(-R,R),uniform(-R,R),uniform(-R,R)])
…
1
vote
2answers
124 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 diffusion. I had a look a …
2
votes
5answers
104 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):
.....
…
0
votes
4answers
130 views
replace or remove one null (python)
Hi Everyones,
I would like to remove one null byte in a string, and sometime replace it with another char.
Like that :
string = "41 00 36 00 36 00 00 00 57 00 46 00 42 00 41 00 61 00 62 00 73 00 20 …
1
vote
2answers
76 views
How to get two random records with Django
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.
0
votes
5answers
160 views
What is suggested seed value to use with random.seed()?
Simple enough question:
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 …
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', …
1
vote
3answers
94 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 can use:
In [2]: …
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))
…
0
votes
4answers
118 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. Is there a way to do …
0
votes
1answer
135 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
131 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
251 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 Google nor …
0
votes
5answers
416 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.
Parameters:
…
1
vote
5answers
190 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 python.
go(10) …
