发布时间:2017-01-12 18:02:19
#coding:utf-8#定义md5生成函数def md5(object): import hashlib md5=hashlib.md5() md5.update(object) return md5.hexdigest()#模拟注册账号zhdb={}def register_user(user,passwd): if user not in zhdb.keys(): zhdb[user]=md5(user+passwd+'abc')&nbs.........【阅读全文】
发布时间:2016-12-16 11:31:06
import datetimea = "2011-09-28 10:00:00"b = datetime.datetime.strptime(a,'%Y-%m-%d %H:%M:%S')print b2011-09-28 10:00:00使用datetime模块可以直接将字符串格式化成时间,time得先转换成strptime转换成时间数组,然后在使用strftime格式化需要个时间格式以下转载一篇文章:1.将字符串的时间转换为时间戳.........【阅读全文】
发布时间:2016-12-12 22:27:58
#-*-coding:utf-8-*-#!/usr/bin/pythonimport re #导入re模块x=open('2.txt','r+') #打开文件w=open('1.log','a+') #打开文件for line in x.readlines(): #循环读取数据 s=re.findall(r"\"deviceId\"\:\"\d+\"",.........【阅读全文】
发布时间:2016-12-09 10:24:23
题:下过象棋的人都知道,马只能走'日'字形(包括旋转90°的日),现在想象一下,给你一个n行m列网格棋盘, 棋盘的左下角有一匹马,请你计算至少需要几步可以将它移动到棋盘的右上角,若无法走到,则输出-1.如n=1,m=2,则至少需要1步;若n=1,m=3,则输出-1。解:def f(n,m): step = ((1,2),(2,1),(.........【阅读全文】