Example:
import arcpy
ds = r"c:\temp\sample.gdb\Parcels"
g = arcpy.Geometry()
geomList = arcpy.CopyFeatures_management(ds,g)
# Get the Area (Sq Ft)
area = 0.0
for geom in geomList:
area += geom.area
print "Total Parcel Area: {0}".format(area)
The CopyFeatures() copies the results as a geometry object to a list and the area property is a standard Geometry object property.
Enjoy