Am Fri, 24 Oct 2008 05:06:23 -0500 schrieb Tim Chase:

>>>>> ["%s="%s" % (k,v) for k,v in d.items()]
>>   File "<stdin>", line 1
>>     ["%s="%s" % (k,v) for k,v in d.items()]
>>                                           ^
>> SyntaxError: EOL while scanning single-quoted string
> 
> You have three quotation marks...  you want
> 
>    "%s=%s"
> 
> not
> 
>    "%s="%s"
> 
> -tkc
>
Or he may have wanted
 "%s = '%s'"
Another neat python feature.
HTH
Martin
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to