you can use Define Projection (Data Management) here...
This tool overwrites the coordinate system information (map projection
and datum) stored with a dataset.
Syntax
DefineProjection_management (in_dataset, coor_system)
Example Code:
# Name: DefineProjection.py
# Description: Records the coordinate system information for the specified input
dataset or feature class
# Author: ESRI
# import system modules
import arcpy
# set workspace environment
arcpy.env.workspace = "C:/data"
# set local variables
inDataset = "forest.shp"
coordinateSystem = "GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',
SPHEROID['WGS_1984',6378137.0,298.257223563]],
PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]]"
arcpy.DefineProjection_management(inDataset, coordinateSystem)
i hope it helps you...