Any way to query the location of a sphere object?

I’m using Python for Rhino, and I was wondering if there is a way to query a position of a sphere object using its name or GUID. I realize that the concept of position is not well defined for generic objects, but given that spheres have a clear definition of position I was hoping it might be possible.

Sure -

plane,radius=rs.SurfaceSphere(sphere_id)
center_pt=plane.Origin

Very cool. Thanks!