Merge pull request #159 from superdtx/patch-1

Update p10_remove_duplicates_from_seq_order.rst
This commit is contained in:
XiongNeng
2017-04-04 11:25:55 +08:00
committed by GitHub

View File

@@ -19,7 +19,7 @@
for item in items:
if item not in seen:
yield item
seen.add(item)
seen.add(item)
下面是使用上述函数的例子:
.. code-block:: python