当前位置:   article > 正文

Python|文件操作题目_python1.文件操作题,请在当前目录下新建一个txt文件,并进行以下操作,每步骤写

python1.文件操作题,请在当前目录下新建一个txt文件,并进行以下操作,每步骤写

在本地电脑盘创建“Python+【项目名称】+【学号】+姓名”.doc文件。

操作过程截图记录到doc文件中。

  1. 在桌面新建文件夹test,并放入原始数据test.txt;
  2. 在Python代码中打开test.txt文件;
  3. 在Python代码中逐行读取test.txt数据;
  4. 对test.txt中的数据按分数进行从高到低排序;
  5. 保存排好序的文件,保存位置为文件夹test根目录,文件名为finally.txt;

    答案:

    1. f = open(r'C:\Users\86151\Desktop\test\test.txt',mode='r')
    2. line = f.readlines()
    3. print(sorted(line,key=lambda s:s[6: ],reverse=True))
    4. nums = sorted(line,key=lambda s:s[6:],reverse=True)
    5. with open(r'C:\Users\86151\Desktop\test\finally.txt',mode='w') as h:
    6. for each in nums:
    7. h.write(each)

    我自己做的答案,太菜了,第四步就不能做出来。

    1. f = open(r'C:\Users\86151\Desktop\test\test.txt',mode='r')
    2. for line in f:
    3. if (len(line.strip())==0):continue
    4. print(line.strip())
    5. f.close()

    尝试失败:

    f = open(r'C:\Users\86151\Desktop\test\test.txt',mode='r')
    for line in f:
        if (len(line.strip()) == 0): continue
        L = [ ]
        L = line.strip()
        n = L[-2:]
        L1 = []
        L1.append(n)
        # print(n + '\n')
        print(L1)
    f.close()

这里是资料o 

https://www.yuque.com/docs/share/661cba33-5ec0-43f2-b72a-69d1325f7061?#(密码:gu69) 《Python期末作业》

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/空白诗007/article/detail/827733
推荐阅读
相关标签
  

闽ICP备14008679号