2002-04-28 19:01:56 +02:00
|
|
|
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'
|
|
|
|
|
2005-11-08 08:40:48 +01:00
|
|
|
WWW: http://www.neosynapse.net/istring.html
|