Python 練習(xí)實例99

python 練習(xí)實例99

python 編程100例python 編程100例

題目:有兩個磁盤文件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()

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

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

123456

python 編程100例python 編程100例

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

python 編程100例

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频