代码之家  ›  专栏  ›  技术社区  ›  ogeretal

钟摆。周期实例。如何从中获得时间

  •  0
  • ogeretal  · 技术社区  · 6 年前

    不管我在句号A之后放了什么,都得0分。为什么?

    import pendulum
    
    home = 'Europe/Berlin'
    away = 'America/New_york'
    
    a = pendulum.now(home)
    b = pendulum.now(away)
    print(a)
    print(b)
    dif = b.diff(a)
    print (dif)
    di = dif.in_hours()
    print (di)
    d = dif.hours
    print (d)
    

    输出:

    2019-02-23T21:20:22.738058+01:00
    
    2019-02-23T15:20:22.738058-05:00
    
    Period [2019-02-23T15:20:22.738058-05:00 -> 2019-02-23T21:20:22.738058+01:00]
    
    0
    
    0
    
    0 回复  |  直到 6 年前
        1
  •  1
  •   plasmon360    6 年前

    你得到的是零,因为a和b都代表你的本地现在时间的同一时刻(根据变量创建的时间,它们之间会有微小的差别),但是在不同的时区。

    通过说a=钟摆,现在(home)和b=钟摆,现在(away),你不是在不同的地方创造时间,而是根据它们的时区来表示你的当地时间。

    如果是的话 dif._delta 那么你就会得到

    0 years 0 months 0 days 0 hours 0 minutes 0 seconds 170 microseconds
    

    170微秒是由解释器产生a和b之间的差别。