Sven Hohage writes: > .... > ('car?bought=1&amount=%s')%(Amount) > .... yields > spaces between the values ->[1, 3, 4] You may use: ('car?bought=1&amount=%s')%(_.string.join(Amount,'')) Dieter