# Python CodeRecipe|add()の使い方
❮ Home ❮ Set Methods
# add()の例1
Add an element to the fruits set:
fruits =
{"apple", "banana", "cherry"}fruits.add("orange")
print(fruits)
# add()の定義及び使い方
add()関数は、要素をセットに追加します。 要素がすでに存在する場合、add()関数は要素を追加しません。
# add()の構文
set.add(elmnt)
# add()の引数
パラメータ 説明
elmnt 必須. The element to add to the set
# Example
Try to add an element that already exists:
fruits = {"apple", "banana", "cherry"}fruits.add("apple")
print(fruits)
❮ Home ❮ Set Methods