Remix.run Logo
theptip 8 days ago

    _log(f”My variable is {x + y}”)
Reads to me a lot more fluently to me than

    _log(“My variable is {}”.format(x+y)) 
or

    _log(“My variable is {z}”.format(z=x+y))
It’s nothing too profound.
blami 6 days ago | parent [-]

I am not very familiar with Python. How do you localize (translate) first one?

wzdd 4 days ago | parent [-]

You don't with f-strings because they're substituted eagerly. You could with the new t-strings proposed here because you can get at the individual parts.