excel: 时间戳转日期:
=TEXT((INT(D2/1000)+8*3600)/86400+70*365+19,"yyyy-MM-dd hh:mm:ss")
def to_date(x): return datetime.fromtimestamp(x//1000).strftime("%Y-%m-%d")