MyBlog
ariesjzj
全部博文(55)
2011年(2)
2010年(7)
2009年(17)
2008年(29)
songchua
penguin2
jackie_i
nelson_x
cpk1ng
muyuran
szchl200
hweired
倔强的土
分类: Python/Ruby
2009-12-26 17:49:37
l = [1, 2, 3, 3, 3]l = filter(lambda x: x != 3, l)print l
或
l = [1, 2, 3, 3, 3]l=[i for i in l if i!=3]
path = os.getcwd() sys.path.append(path) files = os.listdir(path)
tmp = os.popen('ls').readlines()
上一篇:[zz]best of VIM tips
下一篇:系统配置文件备份
登录 注册