/f

Ruby-Style String Interpolation for Python.

Primary LanguagePythonMIT LicenseMIT

f

Build Coverage

Ruby-Style String Interpolation for Python.

Usage

>>> import f
>>> a = 2
>>> b = 3
>>> f('#{a}')
'2'
>>> f('#{a + b}')
'5'