Уведомления

Группа в Telegram: @pythonsu

#1 Март 6, 2008 16:14:00

nxx
От:
Зарегистрирован: 2007-11-13
Сообщения: 3
Репутация: +  0  -
Профиль   Отправить e-mail  

Как узнать версию

Глупый наверное вопрос, но…
как узнать версию python ?
в смысле какая функция возвращает версию ?



Офлайн

#2 Март 6, 2008 16:18:25

Ferroman
От:
Зарегистрирован: 2006-11-16
Сообщения: 2759
Репутация: +  1  -
Профиль   Отправить e-mail  

Как узнать версию

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)]'
Или еще лучше (удобнее для разбора)

version_info
A tuple containing the five components of the version number: major, minor, micro, releaselevel, and serial. All values except releaselevel are integers; the release level is ‘alpha’, ‘beta’, ‘candidate’, or ‘final’. The version_info value corresponding to the Python version 2.0 is (2, 0, 0, ‘final’, 0). New in version 2.0.

Отредактировано (Март 6, 2008 16:20:14)

Офлайн

Board footer

Модераторировать

Powered by DjangoBB

Lo-Fi Version