generate HTML

Jim jhefferon at smcvt.edu
Tue Nov 15 08:14:49 EST 2005


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',)
(or triple-doubles: """ .. """ as you noted).

Jim




More information about the Python-list mailing list