黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python 練習(xí)實(shí)例99

python 練習(xí)實(shí)例99

python 編程100例python 編程100例

題目:有兩個(gè)磁盤(pán)文件a和b,各存放一行字母,要求把這兩個(gè)文件中的信息合并(按字母順序排列), 輸出到一個(gè)新文件c中。

程序分析:無(wú)。

程序源代碼:

#!/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()

運(yùn)行以上程序前,你需要在腳本執(zhí)行的目錄下創(chuàng)建 test1.txt、test2.txt 文件。

以上程序執(zhí)行成功后,打開(kāi) test3.txt 文件可以看到內(nèi)容如下所示:

123456

python 編程100例python 編程100例

下一節(jié):python 練習(xí)實(shí)例100

python 編程100例

相關(guān)文章