Skip to content
/ f Public

Ruby-Style String Interpolation for Python.

License

Notifications You must be signed in to change notification settings

mozillazg/f

Repository files navigation

f

Build Coverage

Ruby-Style String Interpolation for Python.

Usage

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