strlist = 'one, two, three, four, five'.split(", ")
That habit probably just kicked in a little when putting in that example.
strlist = 'one two three four five'.split()
strlist = 'one, two, three, four, five'.split(", ")
That habit probably just kicked in a little when putting in that example.