I am trying to use the import random statement in python, but it doesn't appear to have any methods in it to use.
Am I missing something?
|
1
|
I am trying to use the import random statement in python, but it doesn't appear to have any methods in it to use. Am I missing something? |
||
|
|
|
|
You probably have a file named random.py or random.pyc in your working directory. That's shadowing the built-in random module. You need to rename random.py to something like my_random.py and/or remove the random.pyc file. To tell for sure what's going on, do this:
That will show you exactly which file is being imported. |
|||
|
|
|
|
This is happening because you have a random.py file in the python search path, most likely the current directory. Python is searching for modules using sys.path, which normally includes the current directory before the standard site-packages, which contains the expected random.py. This is expected to be fixed in Python 3.0, so that you can't import modules from the current directory without using a special import syntax. Just remove the random.py + random.pyc in the directory you're running python from and it'll work fine. |
||
|
|
|
|
Is it possible that the script you run is called random.py itself? |
||
|
|
|
|
Works for me:
|
||
|
|
|
|
Seems to work fine for me. Check out the methods in the official python documentation for random:
|
||
|
|
|
|
|
||
|
|
|
|
Can you post an example of what you're trying to do? It's not clear from your question what the actual problem is. Here's an example of how to use the random module:
|
||
|
|
|
|
I think you need to give some more information. It's not really possible to answer why it's not working based on the information in the question. The basic documentation for random is at: http://docs.python.org/lib/module-random.html You might check there. |
||
|
|