Python
woshizn
这个作者很懒,什么都没留下…
展开
-
I want a program which creates a backup of all my important files by Python
[code="Python"]#!/usr/bin/python # Filename: backup_ver4.py import os import time # 1. The files and directories to be backed up are specified in a list. source = ['"C:\\My Documents"', 'C:\\Code...原创 2011-05-25 10:42:07 · 147 阅读 · 0 评论 -
python轻松去除 list 重复元素
我的github账号:https://github.com/hot13399 比较容易记忆的是用内置的set [code="java"]l1 = ['b','c','d','b','c','a','a'] l2 = list(set(l1)) print l2 [/code] 还有一种据说速度更快的,没测试过两者的速度差别 [code="java"]l1 = ['b'...原创 2011-05-27 10:24:33 · 380 阅读 · 0 评论