Alows easy python usage of strings.
pip install fstring
from fstring import fstring
x = 1
y = 2.0
plus_result = "3.0"
print fstring("{x}+{y}={plus_result}") # Prints: 1+2.0=3.0Also supports evaluation
print fstring("1+1 is {1+1}")Now you don't need to format your strings with %s %r or %d, or even number them by order of appearance. you can just call them by their name which makes your code so so so much more readable!
instead of print "Hello, %s :) What a nice %s?" % (username, time_of_day)
how about print fstring("Hello {username} :), What a nice {time_of_day}?")?