Name

nfs()

Examples
a = 200
b = -40
c = 90
sa = nfs(a, 10)
print(sa)  # Prints " 0000000200"
sb = nfs(b, 5)
print(sb)  # Prints "-00040"
sc = nfs(c, 3)
print(sc)  # Prints " 090"

d = -200.94
e = 40.2
f = -9.012
sd = nfs(d, 10, 4)
print(sd)  # Prints "-0000000200.9400"
se = nfs(e, 5, 3)
print(se)  # Prints " 00040.200"
sf = nfs(f, 3, 5)
print(sf)  # Prints "-009.01200"
Description Utility function for formatting numbers into strings. Similar to nf(), but leaves a blank space in front of positive numbers so they align with negative numbers in spite of the minus symbol. There are two versions: one for formatting floats, and one for formatting ints. The values for the digits, left, and right parameters should always be positive integers.
Syntax
nfs(num, digits)
nfs(num, left, right)
Parameters
numthe number(s) to format
digitsint: number of digits to pad with zeroes
leftint: the number of digits to the left of the decimal point
rightint: the number of digits to the right of the decimal point
Related nf()
nfp()
nfc()

Updated on Tue Feb 27 14:07:12 2024.

If you see any errors or have comments, please let us know.