1. 程式人生 > >python 中datetime、time、calendar模組中常用的方法

python 中datetime、time、calendar模組中常用的方法

python高階應用與資料分析學習筆記 06

# -*- coding: utf-8 -*-
from datetime import *   # 引入datetime模組
import time               # 引入time模組
import calendar
"""
-------------------------------------------------
   File Name:     time_1
   Description :
   Author :       Lenovo
   date:          2018/1/6
-------------------------------------------------
   Change Activity:
                   2018/1/6:
-------------------------------------------------
"
"" __author__ = 'Lenovo' # 1、datetime模組中常用的方法 print(datetime.now()) #2018-01-06 13:49:02.667732 # 2、time模組中常用的方法 # 2.1 獲取時間戳時間 print(time.time()) #返回時間戳,從1970年1月1日午夜(曆元)到現在的時間:1515218204.7592776 # 2.2 獲取當前時間,返回時間元組 print(time.localtime()) #time.struct_time(tm_year=2018, tm_mon=1, tm_mday=6, tm_hour=14, tm_min=1, tm_sec=48, tm_wday=5, tm_yday=6, tm_isdst=0)
# 2.3 獲取格式化的時間 print(time.asctime(time.localtime())) # 2.4 格式化日期 # 格式化成2016-03-20 11:45:39形式 print(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())) # 格式化成Sat Mar 28 22:24:24 2016形式 print(time.strftime("%Y/%m/%d %H:%M:%S", time.localtime())) # 將格式字串轉換為時間戳 a = "2018-01-06 14:39:15" b = time.mktime(time
.strptime(a, "%Y-%m-%d %H:%M:%S")) print(b) # 時間戳再轉換成元組 print(time.localtime(b)) # 3、calendar模組中常用的方法 cal = calendar.month(2017,1) print(cal)

image.png

知識截圖

image.png

image.png

image.png

image.png

參考資料