When I call random.sample(arr,length) an error returns random_sample() takes at most 1 positional argument (2 given). After some Googling I found out I'm calling Numpy's random sample function when I want to call the sample function of the random module. I've tried importing numpy under a different name, which doesn't fix the problem. I need Numpy for the rest of the program, though.

Any thoughts? Thanks

link|improve this question
feedback

3 Answers

up vote 7 down vote accepted

Sounds like you have something like

import random
from numpy import *

and random is getting clobbered by the numpy import. If you want to keep the import * then you'll need to rename random:

import random as rnd    # or whatever name you like
from numpy import *

Alternatively, and probably better, is to import numpy as a module instead of just yanking it all into your module's namespace:

import random
import numpy as np      # or leave as numpy, or whatever name you like
link|improve this answer
This fixed it, thanks – Peter Becich Oct 21 '11 at 22:43
feedback

This shouldn't happen. Check your code for bad imports like from numpy import *.

link|improve this answer
Yes, that was part of the problem. Thanks – Peter Becich Oct 21 '11 at 22:43
feedback

Be sure to keep the imports distinct:

>>> import numpy.random
>>> import random         # python's random
link|improve this answer
Good point, thanks – Peter Becich Oct 21 '11 at 22:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.