Logo

Programming-Idioms

History of Idiom 49 > diff from v7 to v8

Edit summary for version 8 by :

Version 7

2015-08-21, 20:33:44

Version 8

2015-08-21, 23:23:44

Idiom #49 Split a space-separated string

Build list chunks consisting in substrings of input string s, separated by one or more space characters.

Idiom #49 Split a space-separated string

Build list chunks consisting in substrings of input string s, separated by one or more space characters.

Code
chunks = s.split(" ")
Code
chunks = s.split(" ")
Doc URL
https://docs.python.org/2/library/stdtypes.html
Origin
https://docs.python.org/2/library/stdtypes.html