可能重复:
将 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