「python」add()で集合に要素を追加するサンプル

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

cft = {“red","yellow","blue"}

cft.add('green’)

print(cft)

実行結果
{'blue’, 'yellow’, 'green’, 'red’}

Python

Posted by arkgame