help with getting selection from wxChoice with out after it has changed

Gerrit Holl gerrit at nl.linux.org
Tue Mar 29 04:37:12 EST 2005


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

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



More information about the Python-list mailing list