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): = = ,