Result Size:
625 x 571
demo_ref_set_update.py:
x = {"apple", "banana", "cherry"} y = {"google", "microsoft", "apple"} x.update(y) print(x)
x
x
=
{
"apple"
,
"banana"
,
"cherry"
}
y
=
{
"google"
,
"microsoft"
,
"apple"
}
x
.
update
(
y
)
print
(
x
)
C:\Users\My Name>python demo_set_update.py
{'cherry', 'microsoft', 'google', 'banana', 'apple'}