1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-11 17:24:29 +02:00

copy sets

This commit is contained in:
Octavian Mocanu
2019-12-07 13:51:46 +01:00
parent 7b80429925
commit fe84024d16

View File

@@ -394,6 +394,9 @@ filled_set | other_set # => {1, 2, 3, 4, 5, 6}
2 in filled_set # => True 2 in filled_set # => True
10 in filled_set # => False 10 in filled_set # => False
# Make a one layer deep copy
filled_set = some_set.copy() # filled_set is {1, 2, 3, 4, 5}
filled_set is some_set # => False
#################################################### ####################################################