我最近偶然发现了这个令人敬畏的pendulum
"日期很轻松"库。
它有一个非常好的功能,显示"人类喜欢"日期时间之间的差异:
In [1]: import pendulum
In [2]: now = pendulum.now()
In [3]: future = now.add(years=10)
In [4]: future.diff_for_humans()
Out[4]: '10 years from now'
但是,它是否有可能使它更复杂的差异 - 比如说"年"和"周"?
In [5]: future = now.add(years=10, weeks=5)
In [6]: future.diff_for_humans()
Out[6]: '10 years from now'
我希望它输出10 years and 5 weeks from now
。
答案 0 :(得分:2)
来自Pendulum模块自述文件:
for playerNode in yourPlayerNodeArray {
if playerNode.engine == nil {
yourEngine.attach(playerNode)
}
}