本文共 298 字,大约阅读时间需要 1 分钟。
把cst时间转换为本地时间
def cst_to_localTime(cst_time):to_format = '%Y-%m-%d %H-%M-%S'from_format = '%a %b %d %H:%M:%S CST %Y' time_struct = time.strptime(cst_time, from_format)times = time.strftime(to_format, time_struct)return times这里传进来的cst_time就是被转换的CST时间
转载于:https://blog.51cto.com/13961889/2369463