TypeError: unhashable type: 'list'

Не получается список преобразовать в множества

col = int(input())
a, b = [], []
for i in range(col):
    a.append(input().split())
    print(i)
for i in range(col):
    b.append(input().split())

list3 = list(set(a) - set(b))

print(list3)

Ответы (0 шт):