Terry Reedy <[EMAIL PROTECTED]> wrote:
>
> <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> | Terry Reedy <[EMAIL PROTECTED]> wrote:
> | >
> | > <[EMAIL PROTECTED]> wrote in message
> | > news:[EMAIL PROTECTED]
> | > | I'm not sure if I have even phrased that right but anyway
>
<[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
| Terry Reedy <[EMAIL PROTECTED]> wrote:
| >
| > <[EMAIL PROTECTED]> wrote in message
| > news:[EMAIL PROTECTED]
| > | I'm not sure if I have even phrased that right but anyway
| > |
| > | How does one find (in the standard Python do
>
> This for me is Python's chief selling point: dir()dir() and
> help(). Python's two selling points are dir(), help(), and very
> readable code. Python's *three* selling points are dir(),
> help(), very readable code, and an almost fanatical devotion to
> the BFDL. Amongst Python's sellin
> First question, what sort of 'thing' is the file object, I need to
> know that if I'm to look up ways of using it.
you can always use
type(thing)
to find out what type it is.
> Second question, even if I know what sort of thing a file object
> is, how do I find methods appl
En Thu, 10 Apr 2008 05:24:24 -0300, <[EMAIL PROTECTED]> escribió:
> Terry Reedy <[EMAIL PROTECTED]> wrote:
>>
>> <[EMAIL PROTECTED]> wrote in message
>> news:[EMAIL PROTECTED]
>> | I'm not sure if I have even phrased that right but anyway
>> |
>> | How does one find (in the standard Python doc
Terry Reedy <[EMAIL PROTECTED]> wrote:
>
> <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> | I'm not sure if I have even phrased that right but anyway
> |
> | How does one find (in the standard Python documentation) information
> | about things like the iteritems() method and
<[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
| I'm not sure if I have even phrased that right but anyway
|
| How does one find (in the standard Python documentation) information
| about things like the iteritems() method and the enumerate() function.
The Library Reference manu
On Apr 9, 5:05 pm, [EMAIL PROTECTED] wrote:
> I'm not sure if I have even phrased that right but anyway
>
> How does one find (in the standard Python documentation) information
> about things like the iteritems() method and the enumerate() function.
>
> They are mentioned in the tutorial as way