From 979482cb6507923cfecf09bf7a681da126716090 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 30 Jan 2019 08:28:47 +0100 Subject: [PATCH] Regex --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 140e022..1ec8eb8 100644 --- a/README.md +++ b/README.md @@ -265,9 +265,7 @@ Regex ----- ```python import re -``` -```python = re.sub(, new, text, count=0) # Substitutes all occurrences. = re.findall(, text) # Returns all occurrences. = re.split(, text, maxsplit=0) # Use brackets in regex to keep the matches. @@ -777,9 +775,7 @@ Enum ---- ```python from enum import Enum, auto -``` -```python class (Enum): = = ,