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