「Python」removeで集合(set)の指定値を削除する

環境
Debian 11
Python 3.10.2

書式
セット名.remove(要素)

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
city = {'東京', '大阪', '福岡'}
city.remove('大阪')
print(city)
city = {'東京', '大阪', '福岡'} city.remove('大阪') print(city)
city = {'東京', '大阪', '福岡'}

city.remove('大阪')

print(city)

実行結果
# python3.10 14.py
{'東京’, '福岡’}

Python

Posted by arkgame