python - Why does formatting with time.strftime use the default value?
PHP中文网
PHP中文网 2017-05-18 10:50:41
0
2
576

a = time.time()

time.sleep(3)

b = time.time()

time_consuming = time.strftime("%H:%M:%S", time.localtime(b - a))
print(time_consuming)

Use the above code to run time.strftime. After formatting the time, there is always a default value for the hour. How did this 8-hour default value come about?

PHP中文网
PHP中文网

认证高级PHP讲师

reply all(2)
迷茫

Due to time zone issues, time should not be used, datetime.timedelta should be used to calculate
Refer to the code below

import time
import datetime

a = time.time()

time.sleep(3)

b = time.time()
print datetime.timedelta(seconds=(b -a ))  # <-- 推荐
time_consuming = time.strftime("%H:%M:%S", time.gmtime(b - a))  # <-- 不推荐
print(time_consuming)

The output is as follows:

0:00:03.004802
00:00:03
阿神

8 hours is caused by time zone conversion: Beijing is the East Eighth District, and the time needs to be added forward by 8 hours.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!