python的日期处理

我的博客

俗话说,工欲善其事必先利其器,所以在使用日期前要先对日期进行处理,所以时间戳和字符串的来回来去转换这个事肯定是要搞的

这次的函数有一个?有两个?有三个?有四个!上代码!

哈哈,像不像直播带货

本次用到3个内置包

import re
import time
import calendar

第一个,日期转时间戳

# 日期字符串转时间戳
def str_timestamp(str_value):
  rev = re.compile("[-/: ]+")
  str_value = re.sub(rev,"",str_value)
  if len(str_value) == 8:
    str_value += "000000"
  to_str_format = "%Y%m%d%H%M%S"
  pre_time = time.strptime(str_value, to_str_format)
  timestamp_value = time.mktime(pre_time)
  return timestamp_value
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python的日期处理