From a47fb6b0f62154c901ee0a387b1eaa71f3272775 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 25 Dec 2018 14:15:36 +0100 Subject: [PATCH] String --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42ded74..79499dc 100644 --- a/README.md +++ b/README.md @@ -200,7 +200,7 @@ String = .replace(old_str, new_str) = .split(sep=None, maxsplit=-1) # Splits on whitespaces by default. = .strip('') - = .join() + = .join() # Joins elements with separator. = .startswith() # Pass tuple of strings for multiple options. = .endswith() # Pass tuple of strings for multiple options. = .isnumeric() # True if str contains only numeric characters.