freebsd-ports/devel/py-istring/pkg-descr
Ying-Chieh Liao f66235fda3 add py-istring 1.0.1
Interpolated Strings
2002-04-28 17:01:56 +00:00

9 lines
233 B
Text

istring is an interpolated string class, which means you can substitute
variables into a string, like this:
>>> j = 3
>>> s = istring("j is $j")
>>> s
'j is 3'
WWW: http://www.neosynapse.net/interpolated_string.htm