Groovy has a concept of GStrings. I can write code like this:
def greeting = 'Hello World'
println """This is my first program ${greeting}"""
I can access the value of a variable from within the String.
How can I do this in Python?
-- Thanks
|
1
|
|
|
|
|
|
In Python, you have to explicitely pass a dictionary of possible variables, you cannot access arbitrary "outside" variables from within a string. But, you can use the For the actual replacement, there are many ways to do it (how unpythonic!):
|
||||||||||||
|
|
|
|
||
|
|
|
|
If your trying to do templating you might want to look into Cheetah. It lets you do exactly what your talking about, same syntax and all. |
||
|
|
|
|
You can't exactly... I think the closest you can really get is using standard %-based substitution, e.g:
Having said that, there are some fancy new classes as of Python 2.6 which can do this in different ways: check out the string documentation for 2.6, specifically from section 8.1.2 onwards to find out more. |
||
|
|
|
|
|
||
|
|