def __ndata_to_html(self, ndata, filler="X"): return "%s %s (<u><b>%s</b></u>)"%(easy_number(ndata.value), easy_unit(ndata.unit), ndata.name,)
def __ndata_to_string(self, ndata, filler="X"): return "%s %s (%s)"%(easy_number(ndata.value), easy_unit(ndata.unit), ndata.name,)
def get_z(self): """Get Z = expression""" return easy_number(self.value * self.multiplier) + " " + easy_unit(self.unit)