IronPython compiler version at runtime

一曲冷凌霜 提交于 2019-12-08 11:00:20

问题


How to get IronPython compiler version at runtime (interactive session)?


回答1:


You can find out the current version via the sys module:

>>> import sys
>>> sys.version
'2.4.0 (IronPython 1.1.2 (1.1.2) on .NET 2.0.50727.3603)'


来源:https://stackoverflow.com/questions/1643974/ironpython-compiler-version-at-runtime

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!