kan du java så kommer du inse hur besvärligt det egentligen är då du börjar med python!
är man van vid java så tar det max max en vecka att komma in i python svängen.
du har ju alla docs inline!
terminal> python
Python 2.2.1 (#1, 12/12/02, 12:33:04)
>>> import string
>>> dir(string)
['ascii_letters', 'ascii_lowercase', 'ascii_uppercase', 'atof', 'atof_error', 'atoi', 'atoi_error', 'atol', 'atol_error', 'capitalize', 'capwords', 'center', 'count', 'digits', 'expandtabs', 'find', 'hexdigits', 'index', 'index_error', 'join', 'joinfields', 'letters', 'ljust', 'lower', 'lowercase', 'lstrip', 'maketrans', 'octdigits', 'printable', 'punctuation', 'replace', 'rfind', 'rindex', 'rjust', 'rstrip', 'split', 'splitfields', 'strip', 'swapcase', 'translate', 'upper', 'uppercase', 'whitespace', 'zfill']
>>> string.capwords.__doc__
'capwords(s, [sep]) -> string\n\n Split the argument into words using split, capitalize each\n word using capitalize, and join the capitalized words using\n join. Note that this replaces runs of whitespace characters by\n a single space.\n\n '
>>> test = 'this looks kool'
>>> string.capwords(test)
'This Looks Kool'
>>> string.capwords(test, 'o')
'This looKs kooL'
typiskt praktiskt!