我想通過使用if語句,for循環和列表來運行它。該列表是參數的一部分。我不知道如何編寫if語句,並讓程序循環遍歷所有不同的單詞,並設置它應該是什麼樣的一切。如何使if語句和for循環運行?
newSndIdx=0;
for i in range (8700, 12600+1):
sampleValue=getSampleValueAt(sound, i)
setSampleValueAt(newSnd, newSndIdx, sampleValue)
newSndIdx +=1
newSndIdx=newSndIdx+500
for i in range (15700, 17600+1):
sampleValue=getSampleValueAt(sound, i)
setSampleValueAt(newSnd, newSndIdx, sampleValue)
newSndIdx +=1
newSndIdx=newSndIdx+500
for i in range (18750, 22350+1):
sampleValue=getSampleValueAt(sound, i)
setSampleValueAt(newSnd, newSndIdx, sampleValue)
newSndIdx +=1
newSndIdx=newSndIdx+500
for i in range (23700, 27250+1):
sampleValue=getSampleValueAt(sound, i)
setSampleValueAt(newSnd, newSndIdx, sampleValue)
newSndIdx +=1
newSndIdx=newSndIdx+500
for i in range (106950, 115300+1):
sampleValue=getSampleValueAt(sound, i)
setSampleValueAt(newSnd, newSndIdx, sampleValue)
newSndIdx+=1
請稍微具體一點。你的問題是什麼,你對你的程序有什麼期望? – aIKid
這個描述太模糊了。它不是已經運行了嗎?爲什麼你需要使用'if','for loop'和'list'?他們是爲了什麼?這些「不同的詞」是什麼,你需要設置什麼? –
這已經工作,但我想濃縮到一個if語句和一個for循環。 for循環會遍歷所有不同的範圍,並且完成這個程序已經做的事情。 –