Mike314 wrote:
Hello,
I have a strange problem with the string format:
'%s %s %s %s %s' % ['01', '02', '03', '04', '05']
Traceback (most recent call last):
File "", line 1, in
TypeError: not enough arguments for format string
But as soon I use tuple it is working:
'%s %s %s %s %s' % (
On Mar 11, 4:07 pm, Mike314 wrote:
> Hello,
>
> I have a strange problem with the string format:
>
> >>> '%s %s %s %s %s' % ['01', '02', '03', '04', '05']
>
> Traceback (most recent call last):
> File "", line 1, in
> TypeError: not enough arguments for format string
>
> But as soon I use tu
On Mar 11, 12:07 am, Mike314 wrote:
> Hello,
>
> I have a strange problem with the string format:
>
> >>> '%s %s %s %s %s' % ['01', '02', '03', '04', '05']
>
> Traceback (most recent call last):
> File "", line 1, in
> TypeError: not enough arguments for format string
>
> But as soon I use t
On Tue, 10 Mar 2009 22:07:59 -0700, Mike314 wrote:
> Hello,
>
>I have a strange problem with the string format:
>
'%s %s %s %s %s' % ['01', '02', '03', '04', '05']
> Traceback (most recent call last):
> File "", line 1, in
> TypeError: not enough arguments for format string
>
> But