def fprint()

in compile_table.py [0:0]


def fprint(x):
    if np.isnan(x):
        return ""
    if x <= 1:
        return ("%.2f" % x).replace("0.", ".")
    else:
        return "%d" % x