summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-08-08 01:32:06 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-08-08 01:32:06 (GMT)
commit291430821487e7f3512c1ba769e5044b651f8fc3 (patch)
tree504a085ef74fd1e36083a54e724c477b9c660eba /Doc
parentc6d80c1bef62c996d1a7d3b544a108fef17fbf65 (diff)
downloadcpython-291430821487e7f3512c1ba769e5044b651f8fc3.zip
cpython-291430821487e7f3512c1ba769e5044b651f8fc3.tar.gz
cpython-291430821487e7f3512c1ba769e5044b651f8fc3.tar.bz2
Issue #4570: Clean-up tutorial example
Diffstat (limited to 'Doc')
-rw-r--r--Doc/tutorial/datastructures.rst14
1 files changed, 5 insertions, 9 deletions
diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst
index 32e4a73..8394c10 100644
--- a/Doc/tutorial/datastructures.rst
+++ b/Doc/tutorial/datastructures.rst
@@ -377,16 +377,12 @@ empty dictionary, a data structure that we discuss in the next section.
Here is a brief demonstration::
- >>> basket = ['apple', 'orange', 'apple', 'pear', 'orange', 'banana']
- >>> fruit = set(basket) # create a set without duplicates
- >>> fruit
- {'orange', 'pear', 'apple', 'banana'}
- >>> fruit = {'orange', 'apple'} # {} syntax is equivalent to [] for lists
- >>> fruit
- {'orange', 'apple'}
- >>> 'orange' in fruit # fast membership testing
+ >>> basket = {'apple', 'orange', 'apple', 'pear', 'orange', 'banana'}
+ >>> print(basket) # show that duplicates have been removed
+ {'orange', 'bananna', 'pear', 'apple'}
+ >>> 'orange' in basket # fast membership testing
True
- >>> 'crabgrass' in fruit
+ >>> 'crabgrass' in basket
False
>>> # Demonstrate set operations on unique letters from two words