solorice/vscodium/extensions/ms-toolsai.jupyter-2022.3.1000901801/pythonFiles/interpreterInfo.py
2022-04-28 21:17:01 +03:00

16 lines
346 B
Python

# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import json
import sys
import builtins
obj = {}
obj["versionInfo"] = tuple(sys.version_info)
obj["sysPrefix"] = sys.prefix
obj["version"] = sys.version
obj["exe"] = sys.executable
obj["is64Bit"] = sys.maxsize > 2**32
builtins.print(json.dumps(obj))