「Python」in文でセットに指定要素が含まれるか判定

書式
要素 in セット名

使用例

# coding: utf-8

cftA= {"A01","B02","C03","D04"}

cftB = "B02"

cftC = {"A01","C03"}

if cftB in cftA:
      print("セットAに要素Bが含まれている AA") 

if cftC <= cftA:
      print("セットAに要素Cが含まれている BB") 

結果
セットAに要素Bが含まれている AA
セットAに要素Cが含まれている BB

Python

Posted by arkgame