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

 

 

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

 

posted @ 2021-07-07 17:38  新茶煮酒  阅读(8523)  评论(0编辑  收藏  举报