qwertyuio.py 238 Bytes Edit 1 2 3 4 5 6 7 8 9 10 11 12 with open(r"C:\Users\蔡铭轩\Desktop\新建 文本文档.txt",'r',encoding="utf-8")as file: a=file.readlines() for i in a: s=i.split() d=0 for g in s[1:]: d=d+int(g) h=s[0]+str(d) print(h)