With or Using

Tim Howarth tim at worthy.demon.co.uk
Tue Apr 17 04:16:11 EDT 2001


Being lazy, I wondered if something like the following was possible in
Python?

jim=person()

Rather than typing jim each time,

jim.born=1960
jim.haircolour='Brown'
jim.eyecolour='Green'

Have a "with" or "using" block,

with jim:
    born=1960
    haircolour='Brown'
    eyecolour='Green'

or
using jim:
    born=1960



-- 
___
 |im    ---- ARM Powered ----



More information about the Python-list mailing list