mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
copy sets
This commit is contained in:
parent
7b80429925
commit
fe84024d16
@ -394,6 +394,9 @@ filled_set | other_set # => {1, 2, 3, 4, 5, 6}
|
||||
2 in filled_set # => True
|
||||
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
|
||||
|
||||
|
||||
####################################################
|
||||
|
Loading…
Reference in New Issue
Block a user