]> granicus.if.org Git - python/commitdiff
Issue #4570: Clean-up tutorial example
authorRaymond Hettinger <python@rcn.com>
Sun, 8 Aug 2010 01:30:45 +0000 (01:30 +0000)
committerRaymond Hettinger <python@rcn.com>
Sun, 8 Aug 2010 01:30:45 +0000 (01:30 +0000)
Doc/tutorial/datastructures.rst

index 32e4a7336105c834ae8fd54406b37b0989e78db3..8394c1086bacc7b92bb47d76097e06ab0ded9741 100644 (file)
@@ -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