ClearEnvironment (arcpy)
Resumen
Resets a specific environment setting to its default.
Sintaxis
ClearEnvironment (environment_name)
Parámetro | Explicación | Tipo de datos |
environment_name |
The name of the environment setting that will be reset to its default setting. | String |
Ejemplo de código
ClearEnvironment example
Sets the specified environment setting back to its default.
import arcpy
arcpy.env.workspace = "c:/data/world.gdb"
# prints c:/data/world.gdb
print(arcpy.env.workspace)
arcpy.ClearEnvironment("workspace")
# prints None
print(arcpy.env.workspace)
Temas relacionados
4/26/2014