「Python」remove()で指定した要素を削除する

構文
.remove(要素)

サンプルコード
# coding: utf-8

tt = {10,11,12,13}

tt.remove(12)

print(tt)

結果
{10, 11,13}

Python

Posted by arkgame