An open API service indexing awesome lists of open source software.

https://github.com/aceinetx/pyfmt

python c-like string formatting library
https://github.com/aceinetx/pyfmt

Last synced: 5 months ago
JSON representation

python c-like string formatting library

Awesome Lists containing this project

README

          

# pyfmt
lightweight python string formatting library
## format a string
```python
>>> x = pyfmt.default_fmt("Hello, %s", "World!")
>>> x
'Hello, world!'
```
## print formatted
```python
>>> pyfmt.printf("Hello, %s", "World!")
Hello, world!
```