Python 入門指南 5.0

exercise1009.py

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 從表準程式庫引入 datatime
from datetime import datetime

# 定義印出時間的的函數
def print_time(now=None):
    # 確認 now 是否有值
    now = now or datetime.now()
    # 印出現在時間
    return str(now.year) + "-" + str(now.month) +\
           "-" + str(now.day) + ", " + str(now.hour) +\
           ":" + str(now.minute) + ":" + str(now.second)

# 印出計算結果
print(print_time())
input()
print(print_time(datetime.fromisoformat('2019-11-01 00:12:22')))
input()
print(print_time())

# 檔名: exercise1009.py
# 說明:《Python入門指南》的練習
# 網站: http://kaiching.org
# 作者: 張凱慶
# 時間: 2023 年 8 月

回到練習題目
上一頁 exercise1008.py
回 Python 入門指南 5.0 首頁
下一頁 exercise1010.py
回 Python 教材首頁
回程式語言教材首頁