重複の可能性:
for ループを while ループに変換する
私が作成したforループ用にこれを持っているので、whileループで動作するようにどのように書くのか疑問に思っていました。
def scrollList(myList):
negativeIndices=[]
for i in range(0,len(myList)):
if myList[i]<0:
negativeIndices.append(i)
return negativeIndices
これまでのところ、私はこれを持っています
def scrollList2(myList):
negativeIndices=[]
i= 0
length= len(myList)
while i != length:
if myList[i]<0:
negativeIndices.append(i)
i=i+1
return negativeIndices