このコードを教えてもらえますか?なぜこのPythonコードが機能しないのですか?
s = [1, 1, 3, 3, 2, 2, 2, 2, 1, 1, 2, 2, 2]
def group(s):
lst = []
temp_lst = []
for i in s:
if len(temp_lst) == 0:
temp_lst.append(i)
continue
if temp_lst[0] == i:
temp_lst.append(i)
else:
lst.append(temp_lst)
del temp_lst[:]
temp_lst.append(i)
return lst
それを返します:
[[2, 2, 2], [2, 2, 2], [2, 2, 2], [2, 2, 2]]
なぜ?
私の所望の出力は次のようになります。
[[1, 1], [3, 3], [2, 2, 2, 2], [1, 1], [2, 2, 2]]
。 'del tmp_lst [:]'は既存のリストを空にします。あなたは新しいリストを作成しません。 'itertools.groupby'があなたを助けてくれることにも注意してください。 – jonrsharpe
['itertools.groupby']を使う(https://docs.python.org/3/library/itertools.html#itertools.groupby):' [groupbyの_、gのリスト(g)] ' –