「Python」set()メソッドでリストをセットに変換するサンプル

2020年12月10日

構文
set(リスト名)
サンプルコード

#!/usr/bin/ruby
# -*- coding: UTF-8 -*-

lstA = ["AA01","B002","C003","AA01","D004","E005","C003"]

resSet = set(lstA)

print (resSet)

実行結果
>python test.py
{'D004’, 'C003’, 'B002’, 'E005’, 'AA01’}

Python

Posted by arkgame