我有一個名單,我希望把它的元素裏面一個for循環的字符串是這樣的:如何使用列表的索引做串插在一個for循環在python
my_list = ["Germany", "England", "Spain", "France"]
for this in that:
do stuff
print(my_list[0]+ some other stuff)
輸出應該是像:
Germany + some other stuff
England + some other stuff
Spain + some other stuff
France + some other stuff
我怎麼能迴路串插指數呢?
謝謝!
編輯:循環有點不同。它更像這樣:
for foo in bar:
another_bar = []
for x, y in foo:
do stuff
a = object.method()
another_bar.append(my_list[0]+a)
我需要將列表的字符串放入第二層嵌套循環。這裏不能使用zip。
據我所知這是你想要的東西:my_list = [「德國」,「英格蘭」,「西班牙」,「法國」] 爲國家my_list: 打印(國+「的一些其他的東西」 ) –
@ 0x1我編輯了您的修改以修復縮進。請確保它符合您的意圖。另外,你的代碼需要更多的結構。例如,'index'沒有被定義。請參閱[MCVE]。 – Alexander