From aa0b6134158ea70a0b92da0431a6541d12a298ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 25 Dec 2018 18:44:23 +0100 Subject: [PATCH] Format --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.