亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python實現簡單日期工具類

發布時間:2020-10-06 18:12:52 來源:腳本之家 閱讀:154 作者:褚金輝 欄目:開發技術

本文實例為大家分享了python實現簡單日期工具類的具體代碼,供大家參考,具體內容如下

import datetime
import time

DATETIME_FORMAT = "%Y-%m-%d %H:%M:%S"
TIME_FORMAT = "%H:%M:%S"

#當前毫秒數
def curMilis():
  return int(time.time() * 1000)

#當前秒數
def curSeconds():
  return int(time.time())

#當前日期 格式%Y-%m-%d %H:%M:%S
def curDatetime():
  return datetime.datetime.strftime(datetime.datetime.now(),DATETIME_FORMAT)

#當前日期 格式%Y-%m-%d
def curDate():
  return datetime.date.today()

#當前時間 格式%Y-%m-%d
def curTime():
  return time.strftime(TIME_FORMAT)

#秒轉日期
def secondsToDatetime(seconds):
  return time.strftime(DATETIME_FORMAT,time.localtime(seconds))

#毫秒轉日期
def milisToDatetime(milix):
  return time.strftime(DATETIME_FORMAT,time.localtime(milix//1000))

#日期轉毫秒
def datetimeToMilis(datetimestr):
  strf = time.strptime(datetimestr,DATETIME_FORMAT)
  return int(time.mktime(strf)) * 1000

#日期轉秒
def datetimeToSeconds(datetimestr):
  strf = time.strptime(datetimestr,DATETIME_FORMAT)
  return int(time.mktime(strf))

#當前年
def curYear():
  return datetime.datetime.now().year
#當前月
def curMonth():
  return datetime.datetime.now().month

#當前日
def curDay():
  return datetime.datetime.now().day

#當前時
def curHour():
  return datetime.datetime.now().hour

#當前分
def curMinute():
  return datetime.datetime.now().minute

#當前秒
def curSecond():
  return datetime.datetime.now().second

#星期幾
def curWeek():
  return datetime.datetime.now().weekday()

#幾天前的時間
def nowDaysAgo(days):
  daysAgoTime = datetime.datetime.now() - datetime.timedelta(days = days)
  return time.strftime(DATETIME_FORMAT,daysAgoTime.timetuple())

#幾天后的時間
def nowDaysAfter(days):
  daysAgoTime = datetime.datetime.now() + datetime.timedelta(days = days)
  return time.strftime(DATETIME_FORMAT,daysAgoTime.timetuple())

#某個日期幾天前的時間
def dtimeDaysAgo(dtimestr,days):
  daysAgoTime = datetime.datetime.strptime(dtimestr,DATETIME_FORMAT) - datetime.timedelta(days = days)
  return time.strftime(DATETIME_FORMAT,daysAgoTime.timetuple())

#某個日期幾天前的時間
def dtimeDaysAfter(dtimestr,days):
  daysAgoTime = datetime.datetime.strptime(dtimestr,DATETIME_FORMAT) + datetime.timedelta(days = days)
  return time.strftime(DATETIME_FORMAT,daysAgoTime.timetuple())


secondStamp = curSeconds()
print("當前秒:",secondStamp)
milisStamp = curMilis()
print("當前毫秒:",milisStamp)

curdTime = curDatetime()
print("當前時間:",curdTime)
curDate = curDate()
print("當前日期:",curDate)
curT = curTime()
print("當前時刻:",curT)


stdtime = secondsToDatetime(secondStamp)
print("秒轉時間:",stdtime)
mtdtime = milisToDatetime(milisStamp)
print("毫秒轉時間:",mtdtime)
dtimetm = datetimeToMilis(mtdtime)
print("時間轉毫秒:",dtimetm)
dtimets = datetimeToSeconds(mtdtime)
print("時間轉秒:",dtimets)

year = curYear()
print("年:",year)
month = curMonth()
print("月:",month)
day = curDay()
print("日:",day)
hour = curHour()
print("時:",hour)
minute = curMinute()
print("分:",minute)
second = curSecond()
print("秒:",second)
week = curWeek()
print("星期:",week)

輸出結果如下:

當前秒: 1518341913
當前毫秒: 1518341913403
當前時間: 2018-02-11 17:38:33
當前日期: 2018-02-11
當前時刻: 17:38:33
秒轉時間: 2018-02-11 17:38:33
毫秒轉時間: 2018-02-11 17:38:33
時間轉毫秒: 1518341913000
時間轉秒: 1518341913
年: 2018
月: 2
日: 11
時: 17
分: 38
秒: 33
星期: 6
[Finished in 0.2s]

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鄄城县| 藁城市| 台安县| 攀枝花市| 恭城| 墨脱县| 靖西县| 大城县| 黄大仙区| 台中县| 高青县| 娱乐| 金湖县| 额敏县| 云梦县| 天全县| 五峰| 建湖县| 肥城市| 青海省| 肥东县| 新兴县| 苗栗市| 泸州市| 麻栗坡县| 湟中县| 盈江县| 宁南县| 阜平县| 封开县| 呼伦贝尔市| 龙南县| 溧阳市| 兰坪| 元阳县| 工布江达县| 五峰| 天峨县| 高州市| 胶南市| 承德市|