В Python я хотел бы создать строковый блок со встроенными выражениями.
В Ruby код выглядит следующим образом:
def get_val
100
end
def testcode
s=<<EOS
This is a sample string that references a variable whose value is: #{get_val}
Incrementing the value: #{get_val + 1}
EOS
puts s
end
testcode