X-Received: by 10.107.135.21 with SMTP id j21mr20888964iod.2.1449345111235; Sat, 05 Dec 2015 11:51:51 -0800 (PST) X-Received: by 10.50.43.130 with SMTP id w2mr14894igl.0.1449345111220; Sat, 05 Dec 2015 11:51:51 -0800 (PST) Path: csiph.com!optima2.xanadu-bbs.net!xanadu-bbs.net!news.glorb.com!mv3no9641781igc.0!news-out.google.com!f6ni16422igq.0!nntp.google.com!mv3no12110104igc.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.python Date: Sat, 5 Dec 2015 11:51:50 -0800 (PST) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=50.100.117.144; posting-account=SZ_svQkAAACWRFG2bDA-zgq8ILyl4-vo NNTP-Posting-Host: 50.100.117.144 References: <169982db-7285-484a-9a48-0d4a2ea7dea1@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: Question about split method From: Robert Injection-Date: Sat, 05 Dec 2015 19:51:51 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: csiph.com comp.lang.python:100046 On Saturday, December 5, 2015 at 2:29:28 PM UTC-5, Peter Pearson wrote: > On Wed, 2 Dec 2015 14:44:30 -0600, Ian Kelly wrote: > > On Wed, Dec 2, 2015 at 2:37 PM, Robert wrote: > [snip] > >> ss0="1, 2, 4, 8, 16".split(", ") > [snip] > > Try help(str.split) > > Or if, like me, you can't remember the magic word "str", ask: > > help("".split) > > and you know you're asking about the right "split". > > -- > To email me, substitute nowhere->runbox, invalid->com. Thanks for your smart method.