[POWERBI] POWERBI开发步骤
Posted larry66
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[POWERBI] POWERBI开发步骤相关的知识,希望对你有一定的参考价值。
这个是一个数据文件,格式如下
薛宝钗 5776 43
薛宝琴 4346 42
王夫人 3360 25
王熙凤 4460 35
王子腾 5660 45
王仁 5034 65
尤二姐 5324 25
贾芹 5663 25
贾蓉 3446 15
贾兰 3443 35
贾芸 4522 25
尤三姐 5905 45
贾珍 4603 25
这里面有3列数据,分别 保存了 游戏系统的用户名, 用户积分 , 年龄
现在要求大家写一个程序,计算出同一姓氏的人的积分总和。
输出结果格式如下:
薛 : 19142
王 : 18514
尤 : 11229
贾 : 21677
with open("0016_1.txt",encoding="utf8") as f:
lines = f.read().splitlines()
res = {}
for line in lines:
line = line.strip()
if line:
parts = line.split(" ")
if parts[0][0] in res:
res[parts[0][0]] += int(parts[-2])
else:
res[parts[0][0]] = int(parts[-2])
for n,s in res.items():
print(f"{n} : 2{s}")
以上是关于[POWERBI] POWERBI开发步骤的主要内容,如果未能解决你的问题,请参考以下文章