[Zope] string n times

Morten W. Petersen morten@src.no
Tue, 25 Apr 2000 16:05:26 +0200 (CEST)


"*" x $score  ($score is a integer)

in python (which is zope, in a way) you do:

	'x'*10, which will produce 'xxxxxxxxxx'

and in zope you do:

	<dtml-var "'x'*10"> which will also produce 'xxxxxxxxxx'

-Morten