'@'.join([..join(['fred', 'dixon']), ..join(['gmail', 'com'])]) wrote:
> From: "'@'.join([..join(['fred', 'dixon']), ..join(['gmail', 'com'])])" 
> <[EMAIL PROTECTED]>

This is a SyntaxError.
You want to enclose the dots with '' marks as well, like this:

'@'.join(['.'.join(['fred', 'dixon']), '.'.join(['gmail', 'com'])])

regards,
Gerrit Holl.

-- 
Weather in Twenthe, Netherlands 29/03 10:55:
        10.0ÂC mist overcast wind 0.9 m/s None (57 m above NAP)
-- 
In the councils of government, we must guard against the acquisition of
unwarranted influence, whether sought or unsought, by the
military-industrial complex. The potential for the disastrous rise of
misplaced power exists and will persist.
    -Dwight David Eisenhower, January 17, 1961
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to