-4
我從techer那裏得到了代碼。我不是gettign輸出。什麼是錯誤。它已經超出索引。我不明白請幫忙。這是什麼毛病,我一直在掙扎很久?
def something(tu):
ch='a'
for i in tu:
tu[i]=ch
ch+='a'
l=[1,4,2,3,8]
something(l)
for i in l:
print(i)
print("The end!")
的expted輸出
a
aa
aaa
aaaa
aaaaa
The end!
謝謝
你的縮進是錯誤的,函數沒有返回任何東西.. –