Count = os.environ.get("123,213")
Count = "{:,.2f}".format(float(Count))
Count = "{:,.2f}".format(float(Count))
TypeError: float() argument must be a string or a real number, not 'NoneType'
Count = os.environ.get("123,213")
Count = "{:,.2f}".format(float(Count))
Count = "{:,.2f}".format(float(Count))
TypeError: float() argument must be a string or a real number, not 'NoneType'