Esempio n. 1
0
def hex(arg_int):
    from ontology.libont import str_scale
    return concat('0x', str_scale(arg_int, 16))
Esempio n. 2
0
def str(arg_int):
    from ontology.libont import str_scale
    return str_scale(arg_int, 10)