我在Python,list1
列表,下面的while循環:如何在Python中的while循環中修復這個錯誤?
j = 0
while list1[j] >= list1[j - 1] and j < len(list1):
# do something here and return k
# k is always incremented
j += k
我得到了以下錯誤: IndexError: string index out of range
如何解決這個問題?
將'j = 0'改爲'j = 1'。 – Hamed