import arcpy
from arcpy import env

# ws = 'z:/Housing_data/block_change/data/blk10_Census_change_1990_2010_PLA2.gdb'
ws = 'Z:\\Housing_data\\block_change\\data\\blk10_Census_change_1990_2010_PLA2.gdb\\'
out_folder = 'z:/Housing_data/block_change/data/fgdb/'

env.workspace = ws
for fc in arcpy.ListFeatureClasses():

	# create geodatabase if need be
	out_fgdb = out_folder + fc + '.gdb/'
	if not arcpy.Exists(out_fgdb): arcpy.CreateFileGDB_management(out_folder,fc + '.gdb')
	
	# copy feature class to it's own FGDB
	out_fc = out_fgdb + fc
	print 'arc Copy Features ->', out_fc
	arcpy.CopyFeatures_management(fc,out_fc)
	

