Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 640 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 640 Bytes

fstring

Build Status PyPI - Python Version PyPI version

WTFPL License

PEP498 Backport for all supported Python versions.

Usage

pip install fstring

from fstring import fstring as f
x = 1
y = 2
print f("{x}+{y}={x+y}")  # 1+2=3