摘要: 最近看了很多同事的代码,遇到一些之前没用过的python语句,积累起来吧。1 获取本地MAC地址: import uuid mac = uuid.uuid1().hex[-12:]2 del 的使用 a = ['b','c','d'] del a[0] 则a = ['c','d'] del a[0:1] 则a = ['d'] del a 则a未定义3 a = ['c',''d] a.reverse() a = ['d','c'] b = 阅读全文
posted @ 2011-04-25 01:12 毛志谦 阅读(663) 评论(1) 推荐(0) 编辑