Python内蔵関数による現在時刻の取得

514 ワード

Python内蔵関数による現在時刻の取得
python version 3.4.3
module : time
コードは次のとおりです.
# -*- charset:utf-8 -*-
import time
#            
currentTime = time.time()
totalSeconds = int(currentTime)
currentSecond = totalSeconds % 60
totalMinutes = totalSeconds // 60
currentMinute = totalMinutes % 60
totalHours = totalMinutes // 60
currentHour = totalHours % 24
#                  ,    8  ,        +8  
print("     :",(currentHour+8)," : ",currentMinute," : ",currentSecond)