Re: Python Documentation (should be better?)
- From: Bruno Desthuilliers <bdesth.quelquechose@xxxxxxxxxxxxxxxxxxx>
- Date: Wed, 11 May 2005 23:40:02 +0200
Ivan Van Laningham a écrit :
Hi All-- The Python docs are not ideal. I can never remember, for instance, where to find string methods (not methods in the string module, but methods with ''),
>>> dir('')
['__add__', '__class__', '__contains__', '__delattr__', '__doc__', '__eq__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__getslice__', '__gt__', '__hash__', '__init__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__str__', 'capitalize', 'center', 'count', 'decode', 'encode', 'endswith', 'expandtabs', 'find', 'index', 'isalnum', 'isalpha', 'isdigit', 'islower', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'replace', 'rfind', 'rindex', 'rjust', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill']
HTH .
- Follow-Ups:
- Re: Python Documentation (should be better?)
- From: Skip Montanaro
- Re: Python Documentation (should be better?)
- From: Ivan Van Laningham
- Re: Python Documentation (should be better?)
- From: Steven Bethard
- Re: Python Documentation (should be better?)
- References:
- Re: Python Documentation (should be better?)
- From: Ivan Van Laningham
- Re: Python Documentation (should be better?)
- Prev by Date: Re: Python Graphing Utilities.
- Next by Date: Proxy Design Advice Needed
- Previous by thread: Re: Python Documentation (should be better?)
- Next by thread: Re: Python Documentation (should be better?)
- Index(es):
Relevant Pages
|