diff --git a/README.md b/README.md index 2bf9165..aa82615 100644 --- a/README.md +++ b/README.md @@ -201,11 +201,11 @@ String = .strip('') # Strips all passed characters. = .split() # Splits on any whitespace character. = .split(sep=None, maxsplit=-1) # Splits on 'sep' at most 'maxsplit' times. - = .join() - = .replace(old_str, new_str) ``` ```python + = .join() + = .replace(old_str, new_str) = .startswith() # Pass tuple of strings for multiple options. = .endswith() # Pass tuple of strings for multiple options. = .index() # Returns first index of a substring.