Random in python 2.5 not working? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T13:02:35Z http://stackoverflow.com/feeds/question/74430 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/74430/random-in-python-2-5-not-working 1 Random in python 2.5 not working? terra2 2008-09-16T16:49:33Z 2008-09-16T23:22:30Z <p>I am trying to use the import random statement in python, but it doesn't appear to have any methods in it to use.</p> <p>Am I missing something?</p> http://stackoverflow.com/questions/74430/random-in-python-2-5-not-working/74445#74445 2 Answer by jamuraa for Random in python 2.5 not working? jamuraa 2008-09-16T16:51:27Z 2008-09-16T16:51:27Z <p>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: <a href="http://docs.python.org/lib/module-random.html" rel="nofollow">http://docs.python.org/lib/module-random.html</a></p> <p>You might check there. </p> http://stackoverflow.com/questions/74430/random-in-python-2-5-not-working/74459#74459 0 Answer by Chris AtLee for Random in python 2.5 not working? Chris AtLee 2008-09-16T16:52:11Z 2008-09-16T16:52:11Z <p>Can you post an example of what you're trying to do? It's not clear from your question what the actual problem is.</p> <p>Here's an example of how to use the random module:</p> <pre><code>import random print random.randint(0,10) </code></pre> http://stackoverflow.com/questions/74430/random-in-python-2-5-not-working/74476#74476 1 Answer by Vinko Vrsalovic for Random in python 2.5 not working? Vinko Vrsalovic 2008-09-16T16:53:00Z 2008-09-16T16:53:00Z <pre><code>Python 2.5.2 (r252:60911, Jun 16 2008, 18:27:58) [GCC 3.3.4 (pre 3.3.5 20040809)] on linux2 Type "help", "copyright", "credits" or "license" for more information. &gt;&gt;&gt; import random &gt;&gt;&gt; random.seed() &gt;&gt;&gt; dir(random) ['BPF', 'LOG4', 'NV_MAGICCONST', 'RECIP_BPF', 'Random', 'SG_MAGICCONST', 'SystemRandom', 'TWOPI', 'WichmannHill', '_BuiltinMethodType', '_MethodType', '__all__', '__builtins__', '__doc__', '__file__', '__name__', '_acos', '_ceil', '_cos', '_e', '_exp', '_hexlify', '_inst', '_log', '_pi', '_random', '_sin', '_sqrt', '_test', '_test_generator', '_urandom', '_warn', 'betavariate', 'choice', 'expovariate', 'gammavariate', 'gauss', 'getrandbits', 'getstate', 'jumpahead', 'lognormvariate', 'normalvariate', 'paretovariate', 'randint', 'random', 'randrange', 'sample', 'seed', 'setstate', 'shuffle', 'uniform', 'vonmisesvariate', 'weibullvariate'] &gt;&gt;&gt; random.randint(0,3) 3 &gt;&gt;&gt; random.randint(0,3) 1 &gt;&gt;&gt; </code></pre> http://stackoverflow.com/questions/74430/random-in-python-2-5-not-working/74485#74485 0 Answer by Chris Bunch for Random in python 2.5 not working? Chris Bunch 2008-09-16T16:53:43Z 2008-09-16T16:53:43Z <p>Seems to work fine for me. Check out the methods in the <a href="http://docs.python.org/lib/module-random.html" rel="nofollow">official python documentation</a> for random:</p> <pre><code>&gt;&gt;&gt; import random &gt;&gt;&gt; random.random() 0.69130806168332215 &gt;&gt;&gt; random.uniform(1, 10) 8.8384170917436293 &gt;&gt;&gt; random.randint(1, 10) 4 </code></pre> http://stackoverflow.com/questions/74430/random-in-python-2-5-not-working/75360#75360 0 Answer by Thomas Vander Stichele for Random in python 2.5 not working? Thomas Vander Stichele 2008-09-16T18:19:19Z 2008-09-16T18:19:19Z <p>Works for me:</p> <pre><code>Python 2.5.1 (r251:54863, Jun 15 2008, 18:24:51) [GCC 4.3.0 20080428 (Red Hat 4.3.0-8)] on linux2 Type "help", "copyright", "credits" or "license" for more information. &gt;&gt;&gt; import random &gt;&gt;&gt; brothers = ['larry', 'curly', 'moe'] &gt;&gt;&gt; random.choice(brothers) 'moe' &gt;&gt;&gt; random.choice(brothers) 'curly' </code></pre> http://stackoverflow.com/questions/74430/random-in-python-2-5-not-working/75427#75427 6 Answer by Jerry Hill for Random in python 2.5 not working? Jerry Hill 2008-09-16T18:26:02Z 2008-09-16T19:12:19Z <p>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.</p> <p>To tell for sure what's going on, do this:</p> <pre><code>&gt;&gt;&gt; import random &gt;&gt;&gt; print random.__file__ </code></pre> <p>That will show you exactly which file is being imported.</p> http://stackoverflow.com/questions/74430/random-in-python-2-5-not-working/76404#76404 0 Answer by ΤΖΩΤΖΙΟΥ for Random in python 2.5 not working? ΤΖΩΤΖΙΟΥ 2008-09-16T20:11:09Z 2008-09-16T20:11:09Z <p>Is it possible that the script you run is called random.py itself?</p> http://stackoverflow.com/questions/74430/random-in-python-2-5-not-working/78304#78304 1 Answer by Johan Dahlin for Random in python 2.5 not working? Johan Dahlin 2008-09-16T23:22:30Z 2008-09-16T23:22:30Z <p>This is happening because you have a random.py file in the python search path, most likely the current directory.</p> <p>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.</p> <p>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.</p> <p>Just remove the random.py + random.pyc in the directory you're running python from and it'll work fine.</p>