Python 练习

1. 题目

有两个磁盘文件 A 和 B, 各存放一行字母,要求把这两个文件中的信息合并(按字母顺序排列), 输出到一个新文件 C 中。

2. 分析

3. 实例

点我看答案
fp = open('test1.txt', encoding='utf8')
a = fp.read()
fp.close()

fp = open('test2.txt', encoding='utf8')
b = fp.read()
fp.close()

fp = open('test3.txt', 'w', encoding='utf8')
l = list(a + b)
l.sort()
s = ''
s = s.join(l)
fp.write(s)
fp.close()

© 2022 刘士. All rights reserved.

结果匹配 ""

    没有匹配的结果 ""