鱼C论坛

 找回密码
 立即注册
查看: 2226|回复: 3

[已解决]写读取成绩的代码,但是为啥读出来的TXT不对呢

[复制链接]
发表于 2023-3-6 18:07:28 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
def read_file():
    result = []
    with open("students.txt", encoding="UTF-8") as fin:
        for line in fin:
            line = line[:-1]
            result.append(line.split(","))
    return result


def sort_grades(datas):
    return sorted(datas,
                  key=lambda x : int(x[2]),
                  reverse=True)


def write_files(datas):
    with open("students_output.txt", "w", encoding="UTF-8") as fout:
        for data in datas:
            fout.write(",". join(data) + "\n")


datas = read_file()
print("read_file datas:", datas)

datas = sort_grades(datas)
print("sort_grades datas:", datas)

write_files(datas)
print("write_files datas:", datas)










C:\Users\Administrator\AppData\Local\Programs\Python\Python39\python.exe C:\Users\Administrator\Desktop\CODE\lianxi2.py
read_file datas: [['101', '小张', '88'], ['102', '小赵', '99'], ['103', '小孙', '55'], ['104', '小李', '77'], ['105', '小王','6']]
sort_grades datas: [['102', '小赵', '99'], ['101', '小张', '88'], ['104', '小李', '77'], ['103', '小孙', '55'], ['105', '小王', '6']]
write_files datas: [['102', '小赵', '99'], ['101', '小张', '88'], ['104', '小李', '77'], ['103', '小孙', '55'], ['105', '小王', '6']]

Process finished with exit code 0
最佳答案
2023-3-6 18:14:46
最后一行没有换行就没有换行符,所以 line = line[:-1] 把最后一个字符去掉了

你可以把 line = line[:-1] 替换成 line = line.rstrip()
def read_file():
    result = []
    with open("students.txt", encoding="UTF-8") as fin:
        for line in fin:
            line = line.rstrip()                                       # 改了这行
            result.append(line.split(","))
    return result


def sort_grades(datas):
    return sorted(datas,
                  key=lambda x : int(x[2]),
                  reverse=True)


def write_files(datas):
    with open("students_output.txt", "w", encoding="UTF-8") as fout:
        for data in datas:
            fout.write(",". join(data) + "\n")


datas = read_file()
print("read_file datas:", datas)

datas = sort_grades(datas)
print("sort_grades datas:", datas)

write_files(datas)
print("write_files datas:", datas)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2023-3-6 18:08:02 | 显示全部楼层
最后一个数据读出就是不对的,66的数据读出是6
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2023-3-6 18:14:46 | 显示全部楼层    本楼为最佳答案   
最后一行没有换行就没有换行符,所以 line = line[:-1] 把最后一个字符去掉了

你可以把 line = line[:-1] 替换成 line = line.rstrip()
def read_file():
    result = []
    with open("students.txt", encoding="UTF-8") as fin:
        for line in fin:
            line = line.rstrip()                                       # 改了这行
            result.append(line.split(","))
    return result


def sort_grades(datas):
    return sorted(datas,
                  key=lambda x : int(x[2]),
                  reverse=True)


def write_files(datas):
    with open("students_output.txt", "w", encoding="UTF-8") as fout:
        for data in datas:
            fout.write(",". join(data) + "\n")


datas = read_file()
print("read_file datas:", datas)

datas = sort_grades(datas)
print("sort_grades datas:", datas)

write_files(datas)
print("write_files datas:", datas)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2023-3-6 18:46:27 | 显示全部楼层
isdkz 发表于 2023-3-6 18:14
最后一行没有换行就没有换行符,所以 line = line[:-1] 把最后一个字符去掉了

你可以把 line = line[:-1 ...

谢谢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-24 08:50

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表