我是初学者并在ArcMap中创建了一个python脚本工具并运行以打印输入变量。我还在ArcMap中打开了python窗口。该脚本未打印在运行时在工具中输入的变量值。请建议我。
导入arcpy
fc = arcpy.GetParameterAsText(0)
dist = arcpy.GetParameterAsText(1)
print fc
print dist
答案 0 :(得分:1)
你需要使用
arcpy.AddMessage(fc)
而不是print(fc)
REF: http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-functions/addmessage.htm