Форум сайта python.su
Глупый наверное вопрос, но…
как узнать версию python ?
в смысле какая функция возвращает версию ?
Офлайн
version
A string containing the version number of the Python interpreter plus additional information on the build number and compiler used. It has a value of the form 'version (#build_number, build_date, build_time) '. The first three characters are used to identify the version in the installation directories (where appropriate on each platform). An example:
>>> import sys
>>> sys.version
'1.5.2 (#0 Apr 13 1999, 10:51:12) [MSC 32 bit (Intel)]'
Отредактировано (Март 6, 2008 16:20:14)
Офлайн