4257b6cc77
PR: ports/88617 Submitted by: Jean Milanez Melo Approved by: sem (mentor, implicitly)
9 lines
222 B
Text
9 lines
222 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/istring.html
|