From fed9b8f90b3ffe19c6f6163f596e65c91cf5dc58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 2 Jun 2025 11:05:45 +0200 Subject: [PATCH] String --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 59939a1..b64c5b5 100644 --- a/README.md +++ b/README.md @@ -318,7 +318,7 @@ String ```python = .split() # Splits on one or more whitespace characters. - = .split(sep=None, maxsplit=-1) # Splits on 'sep' str at most 'maxsplit' times. + = .split(sep=None, maxsplit=-1) # Splits on 'sep' string at most 'maxsplit' times. = .splitlines(keepends=False) # On [\n\r\f\v\x1c-\x1e\x85\u2028\u2029] and \r\n. = .join() # Joins elements by using string as a separator. ``` diff --git a/index.html b/index.html index 3947fff..79d802a 100644 --- a/index.html +++ b/index.html @@ -310,7 +310,7 @@ Point(x=1, y=2
<list> = <str>.split()                       # Splits on one or more whitespace characters.
-<list> = <str>.split(sep=None, maxsplit=-1)  # Splits on 'sep' str at most 'maxsplit' times.
+<list> = <str>.split(sep=None, maxsplit=-1)  # Splits on 'sep' string at most 'maxsplit' times.
 <list> = <str>.splitlines(keepends=False)    # On [\n\r\f\v\x1c-\x1e\x85\u2028\u2029] and \r\n.
 <str>  = <str>.join(<coll_of_strings>)       # Joins elements by using string as a separator.