📌  相关文章
📜  python 两个日期之间的月份 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:43.146000             🧑  作者: Mango

代码示例1
from datetime import datetime

def diff_month(d1, d2):
    return (d1.year - d2.year) * 12 + d1.month - d2.month