Result Size:
625 x 571
demo_ref_set_pop.py:
fruits = {"apple", "banana", "cherry"} fruits.pop() print(fruits)
x
fruits
=
{
"apple"
,
"banana"
,
"cherry"
}
fruits
.
pop
()
print
(
fruits
)
C:\Users\My Name>python demo_set_pop.py
{'apple', 'cherry'}