dataframe某一列数值保留n位小数时间:2024-02-21 21:12:13 先都除以1转换一下然后用round方法 df_[a] = df_[a].map(lambda x: x / 1) df_[a] = round(df_[a], 2)