summaryrefslogtreecommitdiffhomepage
path: root/python3.html.markdown
diff options
context:
space:
mode:
authorRoberto Fernandez Diaz <robertofd1995@users.noreply.github.com>2018-08-07 11:01:04 +0200
committerGitHub <noreply@github.com>2018-08-07 11:01:04 +0200
commit04de3a348ab825f3b34eb38d07dcb3cdfc6feb7a (patch)
treea737ab00ce73e170e3f308db7ebea982686ac2ab /python3.html.markdown
parent76bb8b21f62a43ffee1828ae23c62021d0d95ec3 (diff)
Clarification about sets
I indicate that a set doesn't contain duplicate elements and add a little example
Diffstat (limited to 'python3.html.markdown')
-rw-r--r--python3.html.markdown3
1 files changed, 3 insertions, 0 deletions
diff --git a/python3.html.markdown b/python3.html.markdown
index d6cfbf59..b378a8c6 100644
--- a/python3.html.markdown
+++ b/python3.html.markdown
@@ -7,6 +7,7 @@ contributors:
- ["Zachary Ferguson", "http://github.com/zfergus2"]
- ["evuez", "http://github.com/evuez"]
- ["Rommel Martinez", "https://ebzzry.io"]
+ - ["Roberto Fernandez Diaz", "https://github.com/robertofd1995"]
filename: learnpython3.py
---
@@ -352,6 +353,8 @@ valid_set = {(1,), 1}
# Add one more item to the set
filled_set = some_set
filled_set.add(5) # filled_set is now {1, 2, 3, 4, 5}
+# Sets do not have duplicate elements
+filled_set.add(5) # it remains as before {1, 2, 3, 4, 5}
# Do set intersection with &
other_set = {3, 4, 5, 6}