From c06742340b0a175e8945fa569cc54b0c21d42629 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 28 Jan 2019 14:03:33 +0100 Subject: [PATCH] Set --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bcb504e..b22b593 100644 --- a/README.md +++ b/README.md @@ -100,11 +100,6 @@ Set |= ``` -```python -.remove() # Throws error. -.discard() # Doesn't throw error. -``` - ```python = .union() # Or: | = .intersection() # Or: & @@ -114,6 +109,11 @@ Set = .issuperset() # Or: >= ``` +```python +.remove() # Throws error. +.discard() # Doesn't throw error. +``` + ### Frozenset #### Is hashable and can be used as a key in dictionary. ```python