I have a virtual environment that I installed some time ago. When I activate it and run python, they tell me the version number
Python 2.7.2+ (default, Oct 4 2011, 20:03:08)
What does the plus after version number mean?
And can this somehow explain why the os.urandom
function os.urandom
not defined, even if (according to the documentation ), it has been there since version 2.4.
>>> from os import urandom Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: cannot import name urandom
source share