Example: Check for Existences
import arcpy
from arcpy import env
env.workspace = r"c:\temp"
fc = sample.shp
if arcpy.Exists(fc):
print "The sample.shp does exist"
else:
print "The sample.shp does not exist"
Note
By default, when scripting, the results of any script or existing data is not to overwrite the data. To change that behavior, set the env.overwriteOutput to True. If data exists and the overwrite property is not set, it could cause an error to the thrown.