Hacker News new | ask | show | jobs
by collyw 2597 days ago
The literals were just an example. And personally I find it more explicit, which is my original point.

If its faster to run, then fair enough.

1 comments

Using your example, I think

"My name is {name}, I'm {feet} tall and live in {location}.".format(name="Bob", location="USA", feet=7)

is less explicit than

"My name is Bob, I'm 7 feet tall and live in USA."

and that last one is faster to run ;-)
Yes it is.