Comment by blueflow
I fail to see the purpose of f-strings if they end up as complex as printf formatting. Maybe use printf at this point?
I fail to see the purpose of f-strings if they end up as complex as printf formatting. Maybe use printf at this point?
I think the purpose is to put variables directly in the string literal instead of calling `printf`. Looking at an f-string immediately tells you where each value will be located in the output. `printf` requires you to read the format string, then look at the arguments, then count where a particular value will be printed.