[python] Buducnost Pythonu: lambda, map, filter

Pavel Kosina geon na post.cz
Úterý Listopad 14 10:16:29 CET 2006


Roman Miklos napsal(a):
> for line in file('data.txt'):
>      print line
>
>   

hmm, a to ještě neznáte with s featurkou "samouzavírání při chybě i 
normálním běhu"  z Py2.5 :

with open('/etc/passwd', 'r') as f:
    for line in f:
        print line ...
        more processing code ...

;-)

-- 
geon
Pavel Kosina



Další informace o konferenci Python