Thanks a bunch! that got me on the right track. Although, sadly, I thought I'd be getting back a lat/long values as the x/y.
I'm starting with a shapefile of nad/stateplane, project it to geographic, and want to then extract all the lat/long values (all within the script). *sigh* back to google...
edit: nevermind, it works, I forgot to uncomment the projection command, lol. here is some code:
rows = gp.UpdateCursor(proj_shp)
row = rows.Next()
while row:
feat = row.shape
pnt = feat.GetPart(0)
print "x: " + str( pnt.x )