用sed删除空行 我的代码如下:class Song def initialize(name) @name = name end def tell puts @name end end class ZhouSong < Song def initialize(name,artist) super(name) @artist = artist end def tell super puts @ar…
#coding:utf-8 '''''cdays-4-exercise-6.py 文件基本操作 @note: 文件读取写入, 列表排序, 字符串操作 @see: 字符串各方法可参考hekp(str)或Python在线文档http://docs.python.org/lib/string-methods.html ''' f = open('cdays-4-test.txt', 'r') #以读方式打开文件 result = list() for line in f.readlines(): #依…