Jim wrote:
> Perhaps you are trying to do this:
> 'text to go here: %s' % ('text',)
> ? For that you need a double-quoted string:
> "text to go here: %s" % ('text',)
Uh, no, not in Python:
>>> 'text to go here: %s' % ('text',)
'text to go here: text'
>>> "text to go here: %s" % ('text',)
'text to go here: text'
Kent
--
http://mail.python.org/mailman/listinfo/python-list
