datasetList = arcpy.ListDatasets("*", "Feature")
for dataset in datasetList:
    print dataset
    fcList = arcpy.ListFeatureClasses("*","",dataset)
    for fc in fcList:
        print fcdatasetList = arcpy.ListDatasets("*", "Feature")
for dataset in datasetList:
    print dataset
    fcList = arcpy.ListFeatureClasses("*","",dataset)
    fcList.sort()
    for fc in fcList:
        print fc
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		I want to list all features, by feature dataset, to deliver to the staff at my office.