Home | History | Annotate | Download | only in python2.7

Lines Matching refs:words

44 # Capitalize the words in a string, e.g. " aBc  dEf " -> "Abc Def".
48 Split the argument into words using split, capitalize each
49 word using capitalize, and join the capitalized words using
53 sep is used to split and join the words.
280 # Split a string into a list of space/tab-separated words
284 Return a list of the words in the string s, using sep as the
286 maxsplit places (resulting in at most maxsplit+1 words). If sep
295 # Split a string into a list of space/tab-separated words
299 Return a list of the words in the string s, using sep as the
308 def join(words, sep = ' '):
311 Return a string composed of the words in list, with
318 return sep.join(words)