for k in range(0, 6):
list1 = {0, 1, 2, 3, 3}
for i in range(0, 5):
if (list1[i] == list1[i+1]):
break
k=k-1
이런 코드를 쓰니
Traceback (most recent call last):
File "<stdin>", line 4, in <module>
TypeError: 'set' object does not support indexing
이런 에러가 뜨는데 'set' 오브젝트가 무엇인지 모르겠습니다. ㅠㅠ