0
votes
0answers
23 views
ironpython random seeds simpy
hi
I am trying to use simpy using IronPython in Visual Studio.
I'm having problems with my imports:
import sys
sys.path.append("C:\\Python26\\Lib")
sys.path.append("C:\\SimPy-2.0.1")
from …
0
votes
4answers
93 views
Python random and int to string question
Hi,
I am using this line of code to generate a random list of integers:
random.sample(range(2000), 100)
With this code i know i wont have double value's with my result. Is their maybe a faster way …
0
votes
2answers
119 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)])
…
16
votes
9answers
529 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))
…
2
votes
5answers
115 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
150 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 …
0
votes
5answers
181 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 …
1
vote
2answers
87 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.
1
vote
2answers
149 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 …
1
vote
3answers
104 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]: …
0
votes
4answers
124 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 …
1
vote
6answers
277 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
1answer
144 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
138 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?
3
votes
1answer
250 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', …
