import arcpy
from arcpy import env

ws = 'x:/Housing_data/PBG_change/data/pbg00_projections_2050.gdb/'
out_folder = 'x:/Housing_data/PBG_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)
	

