set() 組み込み関数 2022.03.23 2022.03.22 使い方 set = set( iterable ) イテラブルを渡すとsetを返します list1 = [1,2,3] iter1 = set(list1) print(iter1) #結果 {1, 2, 3}