2
votes
3answers
60 views

Mutually exclusive random sampling from a list. Python

input = ['beleriand','mordor','hithlum','eol','morgoth','melian','thingol'] i'm having trouble creating X number of lists of size Y without repeating any elements what i have been doing is using: ...
-2
votes
1answer
202 views

Simplest possible Python audio player? [closed]

I'm looking for an incredibly simple python package for playing sounds. I want to be able to give it a list of "signal heights" ([0,0.1,0.2...]) and hear what it sounds like. I'm not looking for ...
0
votes
1answer
106 views

Removing a random item from a list

As the title says: how to you remove a random item from a list? I am making text based game, and I have a list in which I want to randomly take an item from and then remove it from the list, as seen ...
4
votes
4answers
189 views

Generating an evenly sampled array from unevenly sampled data in NumPy

The problem is that I want to reduce the amount of data for plots and analysis. Im using Python and Numpy. The data is unevenly sampled, so there is an array of timestamps and an array of ...
2
votes
1answer
527 views

OpenCV Python Sample Error

I'm trying to run one of the samples included in opencv: find_obj.py. OpenCV version: 2.4 OS: ArchLinx There is an error at the fuction: flann = cv2.flann_Index(desc2, flann_params) The error is: ...
1
vote
3answers
829 views

random sample in python

I wanna speed this up: import random ndim = 50000 for i in xrange(ndim): random.sample([j for j in xrange(ndim) if j != i], 30000) I'm thinking about using NumPy but don't know how.
2
votes
1answer
382 views

Debugging sample Pygame code?

A simple question: Why does this the first code work but the seemingly identical second code freezes up when the pygame window comes? # Moving Pan # Demonstrates mouse input from livewires import ...
2
votes
2answers
4k views

how in python to generate a random list of fixed length of values from given range?

How to generate a random (but unique and sorted) list of a fixed given length out of numbers of a given range in python? Something like that: >>>> list_length = 4 >>>> ...
46
votes
4answers
27k views

python multithreading for dummies

trying to find a simple example that clearly shows a single task being divided for multi-threading. Quite frankly... many of the examples are overly sophisticated thus.... making the flow tougher ...
2
votes
1answer
491 views

Sample a running Python app

I'm used to sampling C-based apps, which every few milliseconds sees what function stack is being called at that moment. This allows me to see where most of the time is spent in an app so I can ...