在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
Python 操练 实例99标题 :有两个磁盘文件A和B,各寄存 一行字母,请求 把这两个文件中的信息归并 (按字母次序 摆列 ), 输出到一个新文件C中。 法式 剖析 :无。 法式 源代码: #!/usr/bin/python # -*- coding: UTF-8 -*- if __name__ == '__main__': import string fp = open('test1.txt') a = fp.read() fp.close() fp = open('test2.txt') b = fp.read() fp.close() fp = open('test3.txt','w') l = list(a + b) l.sort() s = '' s = s.join(l) fp.write(s) fp.close() 运行以上法式 前,你须要 在剧本 履行 的目次 下创立 test1.txt、test2.txt 文件。 以上法式 履行 胜利 后,打开 test3.txt 文件可以看到内容如下所示: 123456 |
请发表评论