美文网首页
获取时间

获取时间

作者: 汤汤汤汤汤雪林 | 来源:发表于2017-03-08 17:06 被阅读0次
def get_time(self):
        year = datetime.date.today().year
        month = datetime.date.today().month
        firstDayWeekDay, monthRange = calendar.monthrange(year, month)
        start = str(datetime.date(year= year, month= month, day=1))
        end = str(datetime.date(year=year, month=month, day=monthRange))
        return (time.mktime(time.strptime(str(start),'%Y-%m-%d')), 
                time.mktime(time.strptime(str(end),'%Y-%m-%d')))

获取当月第一天和最后一天的datetime格式以及时间戳格式,参考

相关文章

  • 获取时间

    myDate.getYear(); //获取当前年份(2位) myDate.getFullYear(); //获取...

  • 获取时间

  • 获取时间

  • 获取时间

    1、System.currentTimeMillis() System.currentTimeMillis()产...

  • 获取时间

    NSDate *date = [NSDate date]; NSCalendar *calendar = [NSC...

  • 获取时间

    2: 格式: 2017-01-02 12:20:20.151 1其他格式 谷歌浏览器 比较日期 直接比较

  • 获取时间

    获取当月第一天和最后一天的datetime格式以及时间戳格式,参考

  • 获取时间

    datetime获取时间 datetime.now()输出2019-10-28 11:42:55.610853 t...

  • 获取时间

    调用类中的方法: 一般是对象.方法,Calendar 获取年月日:

  • 获取时间

    实例

网友评论

      本文标题:获取时间

      本文链接:https://www.haomeiwen.com/subject/ulabgttx.html