dynamic names

Diez B. Roggisch deets_noospaam at web.de
Sun Mar 7 18:52:34 EST 2004


Val Bykoski wrote:
>     tot=tot + ("L%s" % L)

Here you seem to miss an exec - the line should probably read like this: 

tot = tot + exec("L%s" % L)

-- 
Regards,

Diez B. Roggisch



More information about the Python-list mailing list