描述
GetInstallInfo 函数返回包含安装信息的字典。
语法
GetInstallInfo ()
数据类型 | 说明 | ||||||||||||||||||||||||||
Dictionary | 函数返回包含安装属性的字典。
|
代码示例
返回安装信息。
import arcpy
# Use the dictionary iteritems to iterate through
# the key/value pairs from GetInstallInfo
d = arcpy.GetInstallInfo()
for key, value in list(d.items()):
# Print a formatted string of the install key and its value
#
print("{:<13} : {}".format(key, value))
返回产品版本。
import arcpy
print(arcpy.GetInstallInfo()['Version'])