最終的には、.shp で終わるファイルを持つリスト内のすべてのアイテムを表示する必要があります。したがって、各リスト項目を個別にインデックス化できる必要があります。助言がありますか?
これは私がこれまでに持っているものです:
folderPath = r'K:\geog 173\LabData'
import os
import arcpy
arcpy.env.workspace = (folderPath)
arcpy.env.overwriteOutput = True
fileList = os.listdir(folderPath)
print fileList
"""Section 2: Identify and Print the number
and names of all shapefiles in the file list:"""
numberShp = 0
shpList= list()
for fileName in fileList:
print fileName
fileType = fileName[-4:]
print fileType
if fileType == '.shp':
numberShp +=1
shpList.append(fileName)
print shpList
print numberShp