]> granicus.if.org Git - python/commitdiff
Remove redundant example.
authorGeorg Brandl <georg@python.org>
Fri, 21 May 2010 20:45:12 +0000 (20:45 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 21 May 2010 20:45:12 +0000 (20:45 +0000)
Doc/tutorial/datastructures.rst

index b562558d9488f221d16438a024c4642277bcd74a..32e4a7336105c834ae8fd54406b37b0989e78db3 100644 (file)
@@ -377,10 +377,7 @@ empty dictionary, a data structure that we discuss in the next section.
 
 Here is a brief demonstration::
 
-   >>> basket = {'apple', 'orange', 'apple', 'pear', 'orange', 'banana'}
-   >>> print(basket)
-   {'orange', 'banana', 'pear', 'apple'}
-   >>> fruit = ['apple', 'orange', 'apple', 'pear', 'orange', 'banana']
+   >>> basket = ['apple', 'orange', 'apple', 'pear', 'orange', 'banana']
    >>> fruit = set(basket)               # create a set without duplicates
    >>> fruit
    {'orange', 'pear', 'apple', 'banana'}