ClearEnvironment
Summary
Resets a specific environment setting to its default.
Syntax
ClearEnvironment(environment_name)
| Parameter | Explanation | Data Type |
|---|---|---|
|
environment_name |
The name of the environment setting that will be reset to its default setting. |
String |
Code sample
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)