摘要:
http://jiajun.iteye.com/blog/899632 阅读全文
摘要:
1. 知道时间戳看标准时间, 时间戳到 秒:date -d @1428478407Wed Apr 8 15:33:27 CST 20152. 看到前时间时间戳格式date +%s14284788503. 知道某个标准时间, 看时间戳 date -d "Wed Apr 8 15:33:27 CST... 阅读全文
摘要:
#!/usr/bin/python# -*- coding: utf-8 -*-import sysimport subprocess as spdef main(): cmd = 'systeminfo' p = sp.Popen(cmd, shell=True, stdout=sp.... 阅读全文
摘要:
各种日期格式定义,容易忘记,这里备注下: * 支持格式为 yyyy.MM.dd G 'at' hh:mm:ss z 如 '2002-1-1 AD at 22:10:59 PSD' * yy/MM/dd HH:mm:ss 如 '2002/1/1 17:55:00' * yy/MM/dd HH:mm:s... 阅读全文
摘要:
两个list, 有对应关系,希望同时完成遍历用迭代器迭代的方法也不是不可以,python提供了更直观的方法:可以使用zip把两个list打包 ,类似: list1 = [1,2,3,4]list2 = [5,6,7,8]for (i1, i2) in zip(list1,list2): i3 = ... 阅读全文