I have some code that looks something like this:

import random

n = 0
while n <= 50:
  n = n+1
  a = random.randint(1, 16)
  b = random.randint(1, 5)
  print n, ". ", a, "-", b, "= "

For some reason, when running it, I get the following error: AttributeError: 'module' object has no attribute 'randint'. However, I have no problems when running the same random.randint queries in IDLE. How can I fix this?

link|improve this question
feedback

2 Answers

You have another module called "random" somewhere. Did you name your script "random.py"?

link|improve this answer
I guess - yes :) – khachik Nov 14 '10 at 17:28
feedback

Code works fine for me, so you must have another module called "random" on your PYTHONPATH

Try a dir(random) to see whats in it. This might make it easier to remember why you have another module named random and where it is.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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