Which Version Of Python Time Module Am I Using
How do I determine which version of the python module 'time' is installed. For other modules .version.version or .__version__ work, however for time, both these methods return the
Solution 1:
Module time
is built-in in the Python interpreter. No other version than the interpreter's itself can be a valid answer (you can access that one using sys.version
).
Other built-in modules like os
, sys
etc. also do not have their own version information.
Post a Comment for "Which Version Of Python Time Module Am I Using"