Literal String Interpolation library
Posted: Tue Feb 23, 2021 11:48 pm
Is posible add "Literal String Interpolation" to micropython, this library allow to do the next:
When I try to do this in micropython, returns me an error.
Code: Select all
>>> a = "Drako"
>>> b = "micropython"
>>> f"Hello, my name is {a}, I'm new with {b}."
"Hello, my name is Drako, I'm new with micropython."