map() question...

Bengt Richter bokr at oz.net
Sun Jan 12 22:15:41 EST 2003


On Sun, 12 Jan 2003 18:50:29 -0800, Erik Max Francis <max at alcyone.com> wrote:

>Mike Meyer wrote:
>
>> "Kevin Ethridge" <kevinethridge at yahoo.com> writes:
>>
>> > Why doesn't map() work with the print function?
>> > ie map(print, ['Have', 'a', 'great', 'day.'])
>> 
>> Because print isn't a function, it's a statement. It will work with
>> sys.stdout.write.
>
>Only if wrapped in a lambda.  Don't forget that trailing newline that's
>implicit in a print statement (one with no trailing comma, anyway):
>
>	lambda x: sys.stdout.write(x + '\n')
>
And then there's softspace ;-)

Regards,
Bengt Richter




More information about the Python-list mailing list