当前位置:   article > 正文

python获取当前时间转换成时间戳方法_python 时间转时间戳毫秒

python 时间转时间戳毫秒

1,获取当前秒级别时间戳

  1. import time
  2. mkt = int(round(time.time()))
  3. print (" 当前时间戳为: %s" % int (round(time.time())

2,获取当前年-月-日 时:分:秒 格式:NNNN-YY-RR HH:FF:SS

  1. def get_current_datetime_05():
  2. now = datetime.now()
  3. year = now.year
  4. month = now.month
  5. day = now.day
  6. hour = now.hour
  7. minute = now.minute
  8. second = now.second
  9. formatted_date = f"{year:04d}-{month:02d}-{day:02d} {hour:02d}:{minute:02d}:{second:02d}"
  10. print(formatted_date)
  11. return formatted_date

3,获取当前年月

  1. def formatted_date_06():
  2. now = datetime.now()
  3. # 格式化当前年月
  4. formatted_date1 = now.strftime("%Y-%m")
  5. return formatted_date1

4、获取毫秒级别时间戳

  1. def get_millisecond_timestamp_07():
  2. # 获取当前时间的时间戳,精确到毫秒
  3. timestamp = int(time.time() * 1000)
  4. return timestamp

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/73036
推荐阅读
相关标签
  

闽ICP备14008679号