count = 0
i = 0
while count < len(mylist):
if mylist[i + 1] == mylist[i + 13] and mylist[i + 2] == mylist[i + 14]:
print mylist[i + 1], mylist[i + 2]
newlist.append(mylist[i + 1])
newlist.append(mylist[i + 2])
newlist.append(mylist[i + 7])
newlist.append(mylist[i + 8])
newlist.append(mylist[i + 9])
newlist.append(mylist[i + 10])
newlist.append(mylist[i + 13])
newlist.append(mylist[i + 14])
newlist.append(mylist[i + 19])
newlist.append(mylist[i + 20])
newlist.append(mylist[i + 21])
newlist.append(mylist[i + 22])
count = count + 1
i = i + 12
我想使newlist.append()
語句轉換成幾個語句。
很明顯嘛,如果你得到不同的結果,這是不一樣的。 – JJJ
這是無效的語法。 – TerryA
假設你的對象是列表,你的代碼不是有效的Python,因爲你使用'[]'而不是'()'。請發佈實際工作代碼。 – BrenBarn