ftuple

Mostly a Joke. This is not a serious project. Or is it....

MIT License

Downloads
28
Stars
10
Committers
3

F-Tuple

F-strings are fabulous, why can't we make the same with Tuple and lists ?

Now you can:

.. code:: python

In [1]: from ftuple import f

In [2]: h = "Hello"

In [3]: w = "World"

In [4]: f"{h} {w}"
Out[4]: 'Hello World'

In [5]: f({h}, {w})
Out[5]: ('Hello', 'World')

In [6]: f[{h}, {w}]
Out[6]: ['Hello', 'World']
Package Rankings
Top 23.82% on Pypi.org