Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 3.63 KB

File metadata and controls

27 lines (18 loc) · 3.63 KB

format()

Uses the Python string formatting mini language.

E.g. to format a float to having two decimal places use a format argument of “:.2f”

Data signatures
format( value: $${\color{green}None}$$ ǁ $${\color{green}Any}$$, format: $${\color{green}str}$$ )
Call signatures
format( value: Term ǁ Function ǁ Header ǁ Variable ǁ Reference, format: Term ǁ Function ǁ Header ǁ Variable ǁ Reference )
Purpose Value
Main focus format() produces a calculated value
Context Qualifier
Match qualifiers onmatch
Value qualifiers onmatch

[Back to index]