python輸出指定格式的日期

2021-10-01 19:42:13 字數 566 閱讀 3308

import time

print('當前時間戳:',time.time())

#當前時間戳: 1529908783.3990765

print('格式化可讀時間模式:',time.asctime())

#格式化可讀時間模式: mon jun 25 14:39:43 2018

print('格式化日期:',time.strftime("%y-%m-%d %h:%m:%s",time.localtime()))

#格式化日期: 2018-06-25 14:39:43

import datetime

print('當前年月日:',datetime.date.today())

#當前年月日: 2018-06-25

print('格式化日期:',datetime.date.today().strftime('%d/%m/%y'))

#格式化日期: 25/06/2018

print(datetime.date(1941,1,5))

#1941-01-05

輸出指定格式的日期。

程式分析 使用 datetime 模組。if name main pass code codec n input input the number n code.scoreofstudent n 輸出今日日期,格式為 dd mm yyyy。更多選項可以檢視 strftime 方法 print dat...

16輸出指定格式的日期

usr bin env python3 輸出指定格式的日期 import time 當前時間戳 print time.time 本地時間 print time.localtime 格式化的時間 print time.asctime time.localtime time.time 格式化日期 pri...

printf輸出指定格式

參考部落格 printf格式輸出 flags width perc f n h l type 用到了flags中的 0 注意是零不是歐 其百科描述為 將輸出的前面補上0,直到佔滿指定列寬為止 不可以搭配使用 width 即表示需要輸出的位數。int a 4 printf 03d a 輸出 004 也...