用Python 将两个文件的内容合并成一个新的文件.
发布网友
发布时间:2022-04-06 14:19
我来回答
共1个回答
热心网友
时间:2022-04-06 15:49
f1 = open("mit.txt", 'a+')
f2 = open("unitcode.txt",'r')
f3 = open("unitname.txt",'r')
s2 = f2.read().replace('\n', '').split(',')
s3 = f3.read().replace('\n', '').split(',')
f1.write('Unit name\tUnit Codes\n')
for i1, i2 in zip(s2, s3):
f1.write("%s\t%s\n" % (i1.strip(), i2.strip()))
f1.close()
f2.close()
f3.close()
如果就是想让格式对的很齐的化,只要格式化输出就行了。用ljust的函数对齐就行了。