park = "a park.shp"
road = "the roads.shp"
school = "a school.shp"
train = "the train"
bus = "the bus.shp"
mall = "a mall"
ferry = "the ferry"
viaduct = "a viaduct"
dataList = [park, road, school, train, bus, mall, ferry, viaduct]
print dataList
for a in dataList:
print a
#if a.endswith(".shp"):
# dataList.remove(a)
print dataList
次の出力が得られます(したがって、ループが機能し、すべてを正しく読み取っています)。
['a park.shp', 'the roads.shp', 'a school.shp', 'the train', 'the bus.shp', 'a mall', 'the ferry', 'a viaduct']
a park.shp
the roads.shp
a school.shp
the train
the bus.shp
a mall
the ferry
a viaduct
['a park.shp', 'the roads.shp', 'a school.shp', 'the train', 'the bus.shp', 'a mall', 'the ferry', 'a viaduct']
しかし、# マークを削除して if ステートメントを実行すると、.shp で終わる文字列を削除する必要がありますが、文字列の道はリストに残りますか?
['a park.shp', 'the roads.shp', 'a school.shp', 'the train', 'the bus.shp', 'a mall', 'the ferry', 'a viaduct']
a park.shp
a school.shp
the bus.shp
the ferry
a viaduct
['the roads.shp', 'the train', 'a mall', 'the ferry', 'a viaduct']
私が気付いた他の何か、各文字列を通過する必要があるforループにあることが明らかな場合、すべての文字列が出力されませんか? 誰かが何が問題なのか説明してもらえますか?
ありがとう、C
(参考までに、これは Arc 10.0 のため、Python 2.6.6 上にあります)