6
我使用熊貓'to_html生成輸出文件,當數據寫入文件時,他們有小數點後的許多數字。大熊貓的to_html float_format方法可以限制數字,但是當我用‘float_format’如下:格式輸出數據在熊貓to_html
DataFormat.to_html(header=True,index=False,na_rep='NaN',float_format='%10.2f')
它提出一個例外:
typeError: 'str' object is not callable
如何解決這個問題呢?