diff --git a/strings.html b/strings.html index f909fe5..edc98c7 100755 --- a/strings.html +++ b/strings.html @@ -261,7 +261,7 @@ experience of years. {'password': 'PapayaWhip', 'user': 'pilgrim', 'database': 'master'}
split() string method takes one argument, a delimiter, and split a string into a list of strings based on the delimiter. Here, the delimiter is an ampersand character, but it could be anything.
+split() string method takes one argument, a delimiter, and splits a string into a list of strings based on the delimiter. Here, the delimiter is an ampersand character, but it could be anything.
'key=value=foo'.split('='), we would end up with a three-item list ['key', 'value', 'foo'].)
dict() function.