This is an old revision of the document!
Convert an integer to a right-justified decimal string.
from cubloc import DP DP(value: int, numberOfDigits: int, zeroPrint: int)
zeroPrint=0) or zeros (zeroPrint=1).
Returns a right-justified decimal string padded with spaces or zeros according to zeroPrint.
zeroPrint is not 0 or 1.from cubloc import DP # Example usage result = DP(1, 1, 1) print(result)