我想从Python获取系统的默认时区(PST)。最好的方法是什么?我想避免分叉另一个过程。
查看Python时间模块。
from time import gmtime, strftime print(strftime("%z", gmtime()))
太平洋标准时间