python—接口自动化 detetime模块

    验证发帖接口遇到需要传入“截止日期”这个参数,打算写一个获取未来的时间的方法,但是开始遇错了,整理下错误以便后面再遇到此类问题。

    运行得到以下错误,忘记把时间转成str类型了

 

 

 

获取当前年月time.strftime('%Y-%m')

获取当前年月日time.strftime('%Y-%m-%d')

 

获取当前日期和时间

    form datetime import datetime     #导入datetime库

    now_time=datetime.now()   #获取当前时间

datetime加减

    now_time +=timedelta(hours=24)    #当前时间加24小时(明天的当前时间)

    now_time +=timedelta(hours=-24)      #当前时间减去24小时(昨天的当前时间)

获取指定日期和时间

    hopetime=datetime(2018,4,11,17,30)    #用指定日期创建datatime

    print hopetime

    2018-4-11 17:30:00

时间转换
datatime转换为timestamp

    time=1423894328

    print(datatime.fromtimestamp(time))

str转换为datetime

    time=2018-3-23 17:20:01

    print(datetime.strptime('2018-3-23 17:20:01','%Y-%m-%d %H:%M:%S))

datatime转换为str

    now_time += timedelta(hours=24)#截止日期获取明天的日期(加24小时)

    deadline=now_time.strftime('%Y-%m-%d')#转成str类型

 

 

 

 

 

你可能感兴趣的:(python)