「Python」removeで集合(set)の指定値を削除する
環境
Debian 11
Python 3.10.2
書式
セット名.remove(要素)
使用例
city = {'東京', '大阪', '福岡'} city.remove('大阪') print(city)
実行結果
# python3.10 14.py
{'東京’, '福岡’}
Coding Changes the World
環境
Debian 11
Python 3.10.2
書式
セット名.remove(要素)
使用例
city = {'東京', '大阪', '福岡'} city.remove('大阪') print(city)
実行結果
# python3.10 14.py
{'東京’, '福岡’}