# Python CodeRecipe|pop()の使い方

Home Set Methods

# pop()の例1

Remove a random item from the set:

    fruits = {"apple", "banana", "cherry"}fruits.pop() 
print(fruits)

# pop()の定義及び使い方

pop()関数は、 セット。 この関数は、削除されたアイテムを戻します。

# pop()の構文

set.pop()

# pop()の引数

###パラメータ値がありません

# Example

Return the removed element:

    fruits = {"apple", "banana", "cherry"}
    x = fruits.pop() 
print(x)

Note: The pop() method returns removed value.

Home Set Methods