(no title)
Liquid_Fire | 1 month ago
"literal1 " + str(expression) + " literal2"
vs f"literal1 {expression} literal2"
The only case that would be faster is something like: "foo" + str(expression)Liquid_Fire | 1 month ago
"literal1 " + str(expression) + " literal2"
vs f"literal1 {expression} literal2"
The only case that would be faster is something like: "foo" + str(expression)
No comments yet.