Does the perf_counter () of python's time library return US time?

Why do I suspect that the strftime () of the python time library returns US time?
isn"t it exactly 8 hours short?

import time
print(time.ctime())
print(time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime()))

clipboard.png

Mar.31,2021

time.gmtime shows the time of Greenwich mean time zone 0

China's time zone is East eighth, so.

Menu