【panda】实现将dataframe中的某列值保留2位小数

时间:2024-04-15 11:02:02

 

 

import pandas as pd

# 读取文件内容
df=pd.read_excel("daofang.xlsx")
# 计算签单率,保留2位小数
df[\'签单率\'] = round((df[\'签单数量\']/df[\'到访数量\'])*100,2)
print(

 

df)

#输出结果
D:\Python\Anaconda\python.exe D:/Python/test/paintPicture/ttt.py
所属地区 签单数量 到访数量 签单率
0 北京 7 11 63.64
1 上海 5 11 45.45
2 深圳 12 22 54.55
3 成都 11 14 78.57
4 西安 5 8 62.50