Wyniki wyszukiwania dla "python"
Python: Dodaj listę do ustawienia?
Testowany na interpreterze Pythona 2.6: >>> a=set('abcde') >>> a set(['a', 'c', 'b', 'e', 'd']) >>> l=['f','g'] >>> l ['f', 'g'] >>> a.add(l) Traceback (most recent call last): File "<pyshell#35>", line 1, in <module> a.add(l) TypeError: list ...