13
What is this format specifier?
(lemm.ee)
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Follow the wormhole through a path of communities !webdev@programming.dev
Please put your code between tripple backticks in a seperate line above an below your code. Single backticks are only for
inline codelike this.To answer your question, the
%.2fmeans it should only print two digits after the decimal point.You can also use some other variations like this:
%2fprint the number at least 2 characters wide%5.2print the number at least 5 characters wide with a precision of two digits after the decimal point%05.2the same as above, but fill leading digits with zerosThis is just formatting, play a bit around with it and you will get it.