「Python」discardで指定した要素を削除する

構文
.discard(要素)

サンプルコード
cft = {10, 21, 12}

cft.discard(21)
print(cft)

結果
{10, 12}

Python

Posted by arkgame